mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-26 03:52:03 +02:00
8dba38e02f
* Revert "Remove the deprecated `otel/metric/global` pkg (#3829)" This reverts commit 60f7d42d1eedae6381f1d6524374b57a274e1639. * Revert "Support a global MeterProvider in `go.opentelemetry.io/otel` (#3818)" This reverts commit 813936187e46d48924b717ed9f63767eef26f55a. * Remove top level metric global * Add change to changelog
Zipkin Exporter Example
Send an example span to a Zipkin service. These instructions expect you have docker-compose installed.
Bring up the zipkin-collector
service and example zipkin-client
service to send an example trace:
docker-compose up --detach zipkin-collector zipkin-client
The zipkin-client
service sends just one trace and exits. Retrieve the traceId
generated by the zipkin-client
service; should be the last line in the logs:
docker-compose logs --tail=1 zipkin-client
With the traceId
you can view the trace from the zipkin-collector
service UI hosted on port 9411
, e.g. with traceId
of f5695ba3b2ed00ea583fa4fa0badbeef
: http://localhost:9411/zipkin/traces/f5695ba3b2ed00ea583fa4fa0badbeef
Shut down the services when you are finished with the example:
docker-compose down