@dvelop-sdk
    Preparing search index...

    Interface OtelProviderOptions

    Options for the otel provider.

    interface OtelProviderOptions {
        appName: string;
        appVersion?: string;
        instanceId?: string;
        transports: ((event: any) => Promise<void>)[];
    }
    Index

    Properties

    appName: string

    Name of your app. Is included in every log statement.

    appVersion?: string

    Version string of your app. If set, it is included in every log statement.

    instanceId?: string

    ID of the current instance of your app. If set, it is included in every log statement.

    transports: ((event: any) => Promise<void>)[]

    Transport options for logging.