OpenTelemetry SDK
    Preparing search index...

    OTLP Exporter Config for Node

    interface OTLPGRPCExporterConfigNode {
        compression?: CompressionAlgorithm;
        concurrencyLimit?: number;
        credentials?: ChannelCredentials;
        metadata?: Metadata;
        selfObsMeterProvider?: MeterProvider;
        timeoutMillis?: number;
        url?: string;
        userAgent?: string;
    }

    Hierarchy

    Index
    compression?: CompressionAlgorithm
    concurrencyLimit?: number

    Maximum number of in-flight export requests.

    30
    
    credentials?: ChannelCredentials
    metadata?: Metadata
    selfObsMeterProvider?: MeterProvider

    MeterProvider to record metrics for the exporter itself. This option is experimental and is subject to breaking changes in minor releases.

    timeoutMillis?: number

    Maximum time, in milliseconds, the OTLP exporter will wait for each batch export.

    10000
    
    url?: string

    Collector endpoint URL for the exporter.

    Defaults to the signal-specific endpoint, such as http://localhost:4318/v1/traces, http://localhost:4318/v1/metrics, or http://localhost:4318/v1/logs.

    userAgent?: string