mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
29 lines
776 B
Plaintext
29 lines
776 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * observability/otel/otel-collector/otel-collector-receivers.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="otel-receivers-zipkin-receiver_{context}"]
|
|
= Zipkin Receiver
|
|
|
|
[role="_abstract"]
|
|
The Zipkin Receiver ingests traces in the Zipkin v1 and v2 formats.
|
|
|
|
.OpenTelemetry Collector custom resource with the enabled Zipkin Receiver
|
|
[source,yaml]
|
|
----
|
|
# ...
|
|
config:
|
|
receivers:
|
|
zipkin:
|
|
endpoint: 0.0.0.0:9411 # <1>
|
|
tls: {} # <2>
|
|
service:
|
|
pipelines:
|
|
traces:
|
|
receivers: [zipkin]
|
|
# ...
|
|
----
|
|
<1> The Zipkin HTTP endpoint. If omitted, the default `+0.0.0.0:9411+` is used.
|
|
<2> The server-side TLS configuration. See the OTLP Receiver configuration section for more details.
|