mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-26 03:52:03 +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>
OpenTelemetry-Go Jaeger Exporter
OpenTelemetry span exporter for Jaeger implementation.
Installation
go get -u go.opentelemetry.io/otel/exporters/jaeger
Example
See ../../example/jaeger.
Configuration
The exporter can be used to send spans to:
- Jaeger agent using
jaeger.thrift
over compact thrift protocol viaWithAgentEndpoint
option. - Jaeger collector using
jaeger.thrift
over HTTP viaWithCollectorEndpoint
option.
Environment Variables
The following environment variables can be used (instead of options objects) to override the default configuration.
Environment variable | Option | Default value |
---|---|---|
OTEL_EXPORTER_JAEGER_AGENT_HOST |
WithAgentHost |
localhost |
OTEL_EXPORTER_JAEGER_AGENT_PORT |
WithAgentPort |
6831 |
OTEL_EXPORTER_JAEGER_ENDPOINT |
WithEndpoint |
http://localhost:14268/api/traces |
OTEL_EXPORTER_JAEGER_USER |
WithUsername |
|
OTEL_EXPORTER_JAEGER_PASSWORD |
WithPassword |
Configuration using options have precedence over the environment variables.
Contributing
This exporter uses a vendored copy of the Apache Thrift library (v0.14.1) at a custom import path. When re-generating Thrift code in the future, please adapt import paths as necessary.