@opentelemetry/exporter-metrics-otlp-http
Version:
OpenTelemetry Collector Metrics Exporter allows user to send collected metrics to the OpenTelemetry Collector
12 lines • 555 B
TypeScript
import type { OTLPExporterConfigBase } from '@opentelemetry/otlp-exporter-base';
import type { AggregationTemporality, AggregationSelector } from '@opentelemetry/sdk-metrics';
export interface OTLPMetricExporterOptions extends OTLPExporterConfigBase {
temporalityPreference?: AggregationTemporalityPreference | AggregationTemporality;
aggregationPreference?: AggregationSelector;
}
export declare enum AggregationTemporalityPreference {
DELTA = 0,
CUMULATIVE = 1,
LOWMEMORY = 2
}
//# sourceMappingURL=OTLPMetricExporterOptions.d.ts.map