OpenTelemetry SDK
    Preparing search index...

    Interface LoggerPatternExperimental

    Configuration for a specific logger pattern

    This feature is in development as per the OpenTelemetry specification.

    interface LoggerPattern {
        config: LoggerConfig;
        pattern: string;
    }
    Index

    Properties

    Properties

    config: LoggerConfig

    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.