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]