mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-24 03:47:19 +02:00
04de34a2d6
* Update the website getting started docs Add a new example, fib, that contains an application for the computation of Fibonacci numbers. Use this example to update the website getting started documentation. * Revise docs english * Update example/fib/go.mod Co-authored-by: Anthony Mirabella <a9@aneurysm9.com> * Add a What's Next section * Clean up intro * Apply suggestions from code review Co-authored-by: Anthony Mirabella <a9@aneurysm9.com> * Apply feedback * Return from Poll on error * Update website_docs/getting-started.md Co-authored-by: Joshua MacDonald <jmacd@users.noreply.github.com> * Add root and parent relationship info Co-authored-by: Anthony Mirabella <a9@aneurysm9.com> Co-authored-by: Joshua MacDonald <jmacd@users.noreply.github.com>
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