interface OTLPMetricExporterOptions {
    aggregationPreference?: metrics.AggregationSelector;
    concurrencyLimit?: number;
    headers?: Record<string, string>;
    temporalityPreference?:
        | AggregationTemporalityPreference
        | metrics.AggregationTemporality;
    timeoutMillis?: number;
    url?: string;
}

Hierarchy

  • OTLPExporterConfigBase
    • OTLPMetricExporterOptions

Properties

aggregationPreference?: metrics.AggregationSelector
concurrencyLimit?: number
headers?: Record<string, string>
temporalityPreference?:
    | AggregationTemporalityPreference
    | metrics.AggregationTemporality
timeoutMillis?: number

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

url?: string