From 3466db5b02aa6cd39f6a66382d0315ccd073ebf1 Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Tue, 2 Nov 2021 05:41:58 -0700 Subject: [PATCH] example for thrift exporter was using invalid config (#6091) This was causing the fpm/deb/msi build targets to fail because examples/tracing/otel-collector-config.yml is used the rpm/deb build https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/050ccc1a723abba703864617d839ebd19cb00f45/.github/workflows/build-and-test.yml#L289. Fixes https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/6092 --- examples/tracing/otel-collector-config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tracing/otel-collector-config.yml b/examples/tracing/otel-collector-config.yml index 20b2b2e70d1e..9b7f85cc4f8a 100644 --- a/examples/tracing/otel-collector-config.yml +++ b/examples/tracing/otel-collector-config.yml @@ -6,7 +6,7 @@ receivers: exporters: jaeger_thrift: - url: "http://jaeger:14268/api/traces" + endpoint: "http://jaeger:14268/api/traces" logging: zipkin: endpoint: "http://zipkin:9411/api/v2/spans"