API Reference
    Preparing search index...

    Options for the tracer class to be used during initialization.

    Usage:

    const customConfigService: ConfigServiceInterface;
    const tracerOptions: TracerOptions = {
    enabled?: true,
    serviceName?: 'serverlessAirline',
    captureHTTPsRequests?: true,
    customConfigService?: customConfigService, // Only needed for advanced uses
    };

    const tracer = new Tracer(tracerOptions);
    type TracerOptions = {
        captureHTTPsRequests?: boolean;
        customConfigService?: ConfigServiceInterface;
        enabled?: boolean;
        serviceName?: string;
    }
    Index

    Properties

    captureHTTPsRequests?: boolean

    Whether to trace outgoing HTTP requests made with the http, https, or fetch modules

    customConfigService?: ConfigServiceInterface
    enabled?: boolean
    serviceName?: string