From 7ddb194960d24361444f947d3c05ae265b38265e Mon Sep 17 00:00:00 2001 From: Przemek Maciolek <58699843+pmm-sumo@users.noreply.github.com> Date: Thu, 18 Feb 2021 16:45:43 +0100 Subject: [PATCH] Switch examples to use OTLP/HTTP (#864) --- ...ateway-configuration-template-with-cascading-filter.yaml | 6 +++--- examples/non-kubernetes/gateway-configuration-template.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/non-kubernetes/gateway-configuration-template-with-cascading-filter.yaml b/examples/non-kubernetes/gateway-configuration-template-with-cascading-filter.yaml index 51127f295b66..8b4b0aae26d7 100644 --- a/examples/non-kubernetes/gateway-configuration-template-with-cascading-filter.yaml +++ b/examples/non-kubernetes/gateway-configuration-template-with-cascading-filter.yaml @@ -87,8 +87,8 @@ processors: extensions: health_check: {} exporters: - zipkin: - endpoint: ENDPOINT_URL + otlphttp: + traces_endpoint: ENDPOINT_URL ## Following generates verbose logs with span content, useful to verify what ## metadata is being tagged. To enable, uncomment and add "logging" to exporters below. ## There are two levels that could be used: `debug` and `info` with the former @@ -101,4 +101,4 @@ service: traces: receivers: [jaeger, opencensus, otlp, zipkin] processors: [memory_limiter, cascading_filter, batch] - exporters: [zipkin] + exporters: [otlphttp] diff --git a/examples/non-kubernetes/gateway-configuration-template.yaml b/examples/non-kubernetes/gateway-configuration-template.yaml index ea5eabdd4ce4..b15e832b80be 100644 --- a/examples/non-kubernetes/gateway-configuration-template.yaml +++ b/examples/non-kubernetes/gateway-configuration-template.yaml @@ -45,8 +45,8 @@ processors: extensions: health_check: {} exporters: - zipkin: - endpoint: ENDPOINT_URL + otlphttp: + traces_endpoint: ENDPOINT_URL ## Following generates verbose logs with span content, useful to verify what ## metadata is being tagged. To enable, uncomment and add "logging" to exporters below. ## There are two levels that could be used: `debug` and `info` with the former @@ -59,4 +59,4 @@ service: traces: receivers: [jaeger, opencensus, otlp, zipkin] processors: [memory_limiter, batch] - exporters: [zipkin] + exporters: [otlphttp]