Skip to content

Commit e445e3f

Browse files
pavolloffaymax-cx
authored andcommitted
OBSDOCS-1114: Document OTLP HTTP on Tempo Gateway
1 parent 4cd43bb commit e445e3f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

modules/distr-tracing-tempo-config-multitenancy.adoc

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ spec:
150150
bearertokenauth:
151151
filename: "/var/run/secrets/kubernetes.io/serviceaccount/token"
152152
exporters:
153-
otlp/dev:
153+
otlp/dev: # <1>
154154
endpoint: tempo-simplest-gateway.tempo.svc.cluster.local:8090
155155
tls:
156156
insecure: false
@@ -159,9 +159,21 @@ spec:
159159
authenticator: bearertokenauth
160160
headers:
161161
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"
162171
service:
163172
extensions: [bearertokenauth]
164173
pipelines:
165174
traces:
166-
exporters: [otlp/dev]
175+
exporters: [otlp/dev] # <3>
167176
----
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.

0 commit comments

Comments
 (0)