-
Notifications
You must be signed in to change notification settings - Fork 549
docs: Add tracing tutorial with Jaeger #3071
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a comprehensive tracing tutorial that demonstrates how to instrument a Rust application with OpenTelemetry and visualize traces using Jaeger. The tutorial serves as a foundational example for the broader goal of covering all OpenTelemetry signals.
- Creates a complete example application showing OpenTelemetry tracing integration with OTLP exporter
- Provides detailed documentation with step-by-step instructions for running Jaeger and viewing traces
- Sets up project structure with appropriate dependencies for OpenTelemetry tracing
Reviewed Changes
Copilot reviewed 3 out of 6 changed files in this pull request and generated 2 comments.
File | Description |
---|---|
examples/all-signals/src/main.rs | Implements a demo application with parent/child spans, attributes, and events |
examples/all-signals/README.md | Comprehensive tutorial documentation with setup instructions and screenshots |
examples/all-signals/Cargo.toml | Project configuration with OpenTelemetry dependencies |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3071 +/- ##
=====================================
Coverage 80.1% 80.1%
=====================================
Files 126 126
Lines 21949 21949
=====================================
Hits 17603 17603
Misses 4346 4346 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Trying to add few tutorial, starting with basic Tracing and Jaeger. If there is interest, I want to expand this to cover all signals and scenarios. This can be ported to opentelemetry.io/docs once we reach 1.0 stability for all signals.