1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-04 09:43:23 +02:00
opentelemetry-go/example/zipkin
Tyler Yahn d6dd84f6fa
Move the otel/api/global package to otel/global (#1262)
* Move otel/api/global to otel/global

* Update global package references

* Add changes to CHANGELOG
2020-10-17 10:03:48 -07:00
..
docker-compose.yml add Dockerfile and docker-compose.yml to run example code (#635) 2020-04-23 13:11:24 -07:00
Dockerfile Ensure golang alpine image is running golang-1.14 (#733) 2020-05-15 21:53:05 -07:00
go.mod Pre release v0.13.0 (#1231) 2020-10-08 18:18:50 -04:00
go.sum Update codes to match specification (#1214) 2020-10-05 11:36:03 -07:00
main.go Move the otel/api/global package to otel/global (#1262) 2020-10-17 10:03:48 -07:00
README.md add Dockerfile and docker-compose.yml to run example code (#635) 2020-04-23 13:11:24 -07:00

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