OTLP Exporter Config for Node

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

Hierarchy

  • Omit<OTLPExporterConfigBase, "headers">
    • OTLPGRPCExporterConfigNode

Properties

compression?: CompressionAlgorithm
concurrencyLimit?: number
credentials?: ChannelCredentials
metadata?: Metadata
timeoutMillis?: number

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

url?: string
userAgent?: string