Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface connect

This plugin automatically instruments the connect module.

Hierarchy

  • HttpServer
    • connect

Index

Properties

Optional allowlist

allowlist: string | RegExp | ((url: string) => boolean) | (string | RegExp | ((url: string) => boolean))[]

List of URLs that should be instrumented.

default

/^.*$/

Optional blocklist

blocklist: string | RegExp | ((url: string) => boolean) | (string | RegExp | ((url: string) => boolean))[]

List of URLs that should not be instrumented. Takes precedence over allowlist if a URL matches an entry in both.

default

[]

Optional enabled

enabled: undefined | false | true

Whether to enable the plugin.

default

true

Optional headers

headers: string[]

An array of headers to include in the span metadata.

default

[]

Optional hooks

hooks: undefined | { request?: undefined | ((span?: Span, req?: IncomingMessage, res?: ServerResponse) => any) }

Hooks to run before spans are finished.

Optional measured

measured: boolean | {}

Whether to measure the span. Can also be set to a key-value pair with span names as keys and booleans as values for more granular control.

Optional middleware

middleware: undefined | false | true

Whether to enable instrumentation of .middleware spans

default

true

Optional service

service: string | any

The service name to be used for this plugin.

Optional validateStatus

validateStatus: undefined | ((code: number) => boolean)

Callback function to determine if there was an error. It should take a status code as its only parameter and return true for success or false for errors.

default

code => code < 500

Generated using TypeDoc