Skip to content

Commit be7b400

Browse files
authored
Switch examples to use OTLP/HTTP (#864)
1 parent a7d9872 commit be7b400

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/non-kubernetes/gateway-configuration-template-with-cascading-filter.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ processors:
8787
extensions:
8888
health_check: {}
8989
exporters:
90-
zipkin:
91-
endpoint: ENDPOINT_URL
90+
otlphttp:
91+
traces_endpoint: ENDPOINT_URL
9292
## Following generates verbose logs with span content, useful to verify what
9393
## metadata is being tagged. To enable, uncomment and add "logging" to exporters below.
9494
## There are two levels that could be used: `debug` and `info` with the former
@@ -101,4 +101,4 @@ service:
101101
traces:
102102
receivers: [jaeger, opencensus, otlp, zipkin]
103103
processors: [memory_limiter, cascading_filter, batch]
104-
exporters: [zipkin]
104+
exporters: [otlphttp]

examples/non-kubernetes/gateway-configuration-template.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ processors:
4545
extensions:
4646
health_check: {}
4747
exporters:
48-
zipkin:
49-
endpoint: ENDPOINT_URL
48+
otlphttp:
49+
traces_endpoint: ENDPOINT_URL
5050
## Following generates verbose logs with span content, useful to verify what
5151
## metadata is being tagged. To enable, uncomment and add "logging" to exporters below.
5252
## There are two levels that could be used: `debug` and `info` with the former
@@ -59,4 +59,4 @@ service:
5959
traces:
6060
receivers: [jaeger, opencensus, otlp, zipkin]
6161
processors: [memory_limiter, batch]
62-
exporters: [zipkin]
62+
exporters: [otlphttp]

0 commit comments

Comments
 (0)