mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
e3f547fedd
Bump google.golang.org/grpc from 1.55.0 to 1.56.0 in /bridge/opentracing/test Bump github.com/prometheus/client_golang from 1.15.1 to 1.16.0 in /example/view Bump github.com/golangci/golangci-lint from 1.53.2 to 1.53.3 in /internal/tools Bump github.com/prometheus/client_golang from 1.15.1 to 1.16.0 in /exporters/prometheus Bump golang.org/x/tools from 0.9.3 to 0.10.0 in /internal/tools Bump google.golang.org/grpc from 1.55.0 to 1.56.0 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump google.golang.org/grpc from 1.55.0 to 1.56.0 in /exporters/otlp/otlpmetric Bump google.golang.org/grpc from 1.55.0 to 1.56.0 in /exporters/otlp/otlptrace/otlptracegrpc Bump google.golang.org/grpc from 1.55.0 to 1.56.0 in /exporters/otlp/otlptrace Bump github.com/prometheus/client_golang from 1.15.1 to 1.16.0 in /example/prometheus Bump google.golang.org/grpc from 1.55.0 to 1.56.0 in /example/otel-collector Bump golang.org/x/sys from 0.8.0 to 0.9.0 in /sdk |
||
---|---|---|
.. | ||
docker-compose.yml | ||
Dockerfile | ||
go.mod | ||
go.sum | ||
main.go | ||
README.md |
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