Configuration for a specific logger pattern

This feature is in development as per the OpenTelemetry specification.

interface LoggerPattern {
    config: logs.LoggerConfig;
    pattern: string;
}

Properties

Properties

The configuration to apply to matching loggers. Partial config is allowed; unspecified properties will use defaults.

This feature is in development as per the OpenTelemetry specification.

pattern: string

The logger name or pattern to match. Use '*' for wildcard matching.

This feature is in development as per the OpenTelemetry specification.