This plugin automatically instruments the redis module.

interface redis {
    allowlist?: string | RegExp | ((command) => boolean) | (string | RegExp | ((command) => boolean))[];
    blocklist?: string | RegExp | ((command) => boolean) | (string | RegExp | ((command) => boolean))[];
    enabled?: boolean;
    measured?: boolean | {
        [key: string]: boolean;
    };
    service?: any;
}

Hierarchy

  • Instrumentation
    • redis

Properties

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

List of commands that should be instrumented.

Type declaration

    • (command): boolean
    • Parameters

      • command: string

      Returns boolean

Default

/^.*$/
blocklist?: string | RegExp | ((command) => boolean) | (string | RegExp | ((command) => boolean))[]

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

Type declaration

    • (command): boolean
    • Parameters

      • command: string

      Returns boolean

Default

[]
enabled?: boolean

Whether to enable the plugin.

Default

true
measured?: boolean | {
    [key: string]: 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.

Type declaration

  • [key: string]: boolean
service?: any

The service name to be used for this plugin.

Generated using TypeDoc