OTLP Exporter Config for Node

interface OTLPGRPCExporterConfigNode {
    compression?: CompressionAlgorithm;
    concurrencyLimit?: number;
    credentials?: ChannelCredentials;
    headers?: Record<string, string>;
    metadata?: Metadata;
    timeoutMillis?: number;
    url?: string;
}

Hierarchy

  • OTLPExporterConfigBase
    • OTLPGRPCExporterConfigNode

Properties

compression?: CompressionAlgorithm
concurrencyLimit?: number
credentials?: ChannelCredentials
headers?: Record<string, string>
metadata?: Metadata
timeoutMillis?: number

Maximum time the OTLP exporter will wait for each batch export. The default value is 10000ms.

url?: string