Class ErrorReporting (3.0.4)

This module provides Error Reporting support for Node.js applications. [Error Reporting](https://cloud.google.com/error-reporting/) is a feature of Google Cloud Platform that allows in-depth monitoring and viewing of errors reported by applications running in almost any environment.

This is the entry point for initializing the error reporting middleware. This function will invoke configuration gathering and attempt to create a API client which will send errors to the Error Reporting Service.

module:error-reporting

[What is Error Reporting]https://cloud.google.com/error-reporting/

Package

@google-cloud/error-reporting

Constructors

(constructor)(initConfiguration)

constructor(initConfiguration?: ConfigurationOptions);

Constructs a new instance of the ErrorReporting class

Parameter
NameDescription
initConfiguration ConfigurationOptions

Properties

event

event: () => ErrorMessage;

express

express: (err: {}, req: {}, res: {}, next: Function) => void;

hapi

hapi: {
        register: (server: {}, options: {}, next?: Function) => void;
        name: string;
        version?: string;
    };

koa

koa: (context: any, next: {}) => IterableIterator<{}>;

koa2

koa2: (context: any, next: Function) => Promise<void>;

report

report: (err: any, request?: manualRequestExtractor.Request, customMessage?: string, callback?: manualInterface.Callback | {} | string) => ErrorMessage;

restify

restify: (server: any) => RestifyRequestHandler | RestifyRequestHandler[];