Base interface for configuration options common to all instrumentations. This interface can be extended by individual instrumentations to include additional configuration options specific to that instrumentation. All configuration options must be optional.

interface InstrumentationConfig {
    enabled?: boolean;
}

Hierarchy (View Summary)

Properties

Properties

enabled?: boolean

Whether to enable the plugin.

true