From 67d8ac50063baf6f20c8dee2c7bc4163bba02dee Mon Sep 17 00:00:00 2001 From: etichy Date: Wed, 26 Nov 2025 09:26:34 +0100 Subject: [PATCH] Enable histogram filters --- deploy/helm/gateway-collector-config.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deploy/helm/gateway-collector-config.yaml b/deploy/helm/gateway-collector-config.yaml index 4d44e36d..6db72890 100644 --- a/deploy/helm/gateway-collector-config.yaml +++ b/deploy/helm/gateway-collector-config.yaml @@ -121,11 +121,12 @@ processors: metric: # metrics from EBPF reducer that are not needed - 'IsMatch(name, "^ebpf_net.*$")' - +{{- if .Values.otel.metrics.filter_histograms }} filter/histograms: metrics: metric: - 'type == METRIC_DATA_TYPE_HISTOGRAM' +{{- end }} transform/obi-keep-only-entity-relation-attributes: metric_statements: @@ -663,7 +664,9 @@ service: - routing/metrics processors: - memory_limiter +{{- if .Values.otel.metrics.filter_histograms }} - filter/histograms +{{- end }} {{- if .Values.ebpfNetworkMonitoring.reducer.telemetry.metrics.enabled }} - filter/otlp-metrics {{- end }}