diff --git a/src/metrics/otel.rs b/src/metrics/otel.rs index 595f15f79..9fd794c52 100644 --- a/src/metrics/otel.rs +++ b/src/metrics/otel.rs @@ -36,6 +36,7 @@ pub(crate) fn get_meter_provider(config: &Config) -> Result { .with_endpoint(endpoint.to_string()) .with_protocol(Protocol::Grpc) .with_timeout(Duration::from_secs(3)) + .with_temporality(opentelemetry_sdk::metrics::Temporality::Delta) .build()?; let provider = opentelemetry_sdk::metrics::SdkMeterProvider::builder()