From dcbb1b38a11c7921019f4ace202b46b24eee4017 Mon Sep 17 00:00:00 2001 From: Leonardo Parente <23251360+leoparente@users.noreply.github.com> Date: Mon, 14 Oct 2024 16:00:49 -0300 Subject: [PATCH] remove deprecated exporter --- otlpinf/otlpinf_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/otlpinf/otlpinf_test.go b/otlpinf/otlpinf_test.go index 7418bef..a668a2c 100644 --- a/otlpinf/otlpinf_test.go +++ b/otlpinf/otlpinf_test.go @@ -155,15 +155,13 @@ func TestOtlpinfCreateDeletePolicy(t *testing.T) { }, }, "exporters": map[string]interface{}{ - "logging": map[string]interface{}{ - "loglevel": "debug", - }, + "debug": map[string]interface{}{}, }, "service": map[string]interface{}{ "pipelines": map[string]interface{}{ "metrics": map[string]interface{}{ "receivers": []string{"otlp"}, - "exporters": []string{"logging"}, + "exporters": []string{"debug"}, }, }, },