dd-trace
    Preparing search index...

    Interface redis

    This plugin automatically instruments the redis module.

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

    Properties

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

    List of commands that should be instrumented.

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

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

    []
    
    enabled?: boolean

    Whether to enable the plugin.

    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.

    service?: any

    The service name to be used for this plugin.