File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ spec:
150
150
bearertokenauth:
151
151
filename: "/var/run/secrets/kubernetes.io/serviceaccount/token"
152
152
exporters:
153
- otlp/dev:
153
+ otlp/dev: # <1>
154
154
endpoint: tempo-simplest-gateway.tempo.svc.cluster.local:8090
155
155
tls:
156
156
insecure: false
@@ -159,9 +159,21 @@ spec:
159
159
authenticator: bearertokenauth
160
160
headers:
161
161
X-Scope-OrgID: "dev"
162
+ otlphttp/dev: # <2>
163
+ endpoint: https://tempo-simplest-gateway.chainsaw-multitenancy.svc.cluster.local:8080/api/traces/v1/dev
164
+ tls:
165
+ insecure: false
166
+ ca_file: "/var/run/secrets/kubernetes.io/serviceaccount/service-ca.crt"
167
+ auth:
168
+ authenticator: bearertokenauth
169
+ headers:
170
+ X-Scope-OrgID: "dev"
162
171
service:
163
172
extensions: [bearertokenauth]
164
173
pipelines:
165
174
traces:
166
- exporters: [otlp/dev]
175
+ exporters: [otlp/dev] # <3>
167
176
----
177
+ <1> OTLP gRPC Exporter.
178
+ <2> OTLP HTTP Exporter.
179
+ <3> You can specify `otlp/dev` for the OTLP gRPC Exporter or `otlphttp/dev` for the OTLP HTTP Exporter.
You can’t perform that action at this time.
0 commit comments