12 lines
545 B
TypeScript
12 lines
545 B
TypeScript
import { OTLPExporterConfigBase } from '@opentelemetry/otlp-exporter-base';
|
|
import { 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
|