From c3ffaf932b189080b1e9eb8d7aaca93afc3eb155 Mon Sep 17 00:00:00 2001 From: Moe Jangda Date: Wed, 9 Oct 2024 09:25:11 -0500 Subject: [PATCH] replace deprecated `logging` exporter --- otel-local-config.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/otel-local-config.yaml b/otel-local-config.yaml index baca32918..1fa1c6e07 100644 --- a/otel-local-config.yaml +++ b/otel-local-config.yaml @@ -10,19 +10,22 @@ processors: batch: exporters: - logging: + debug: + verbosity: detailed + sampling_initial: 5 + sampling_thereafter: 200 service: pipelines: traces: receivers: [otlp] processors: [batch] - exporters: [logging] + exporters: [debug] metrics: receivers: [otlp] processors: [batch] - exporters: [logging] + exporters: [debug] logs: receivers: [otlp] processors: [batch] - exporters: [logging] + exporters: [debug] \ No newline at end of file