Skip to content

Commit ff2ba23

Browse files
committed
Added Jaeger endpoint on OpenTelemetry related documentation (#660)
* Added Jaeger endpoint on OpenTelemetry related documentation Signed-off-by: Paolo Patierno <[email protected]> * Fixed typo Signed-off-by: Paolo Patierno <[email protected]> Signed-off-by: Paolo Patierno <[email protected]>
1 parent 19a91dd commit ff2ba23

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

documentation/modules/proc-configuring-kafka-bridge-tracing.adoc

+5-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ CAUTION: The OpenTracing project is now archived, so Strimzi has deprecated supp
4141
+
4242
Use the `bridge.tracing` property to enable the tracing you want to use.
4343
+
44-
.Example configuration to enable OpeTelemetry
44+
.Example configuration to enable OpenTelemetry
4545
[source,properties]
4646
----
4747
#bridge.tracing=jaeger # <1>
@@ -59,8 +59,10 @@ With tracing enabled, you initialize tracing when you run the Kafka Bridge scrip
5959
[source,env]
6060
----
6161
OTEL_SERVICE_NAME=my-tracing-service # <1>
62+
OTEL_EXPORTER_JAEGER_ENDPOINT=http://localhost:14250 # <2>
6263
----
6364
<1> The name of the OpenTelemetry tracer service.
65+
<2> The Jaeger collector endpoint that listens for spans on port 14250.
6466
+
6567
.Environment variables for OpenTracing
6668
[source,env]
@@ -97,8 +99,10 @@ If you want to use another tracing system with OpenTelemetry, do the following:
9799
----
98100
OTEL_SERVICE_NAME=my-tracing-service
99101
OTEL_TRACES_EXPORTER=zipkin # <1>
102+
OTEL_EXPORTER_ZIPKIN_ENDPOINT=http://localhost:9411/api/v2/spans <2>
100103
----
101104
<1> The name of the tracing system. In this example, Zipkin is specified.
105+
<2> The endpoint of the specific selected exporter that listens for spans. In this example, a Zipkin endpoint is specified.
102106

103107
[role="_additional-resources"]
104108
.Additional resources

0 commit comments

Comments
 (0)