We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Honeycomb is slowly switching to opentelemetry and so should this.
The current honeycomb impl this runs on top of (libhoney-rust) has some issues (inefficiencies, and is likely memory leak source).
Here are some links:
Basically, it needs a tracing subscriber which feeds into opentelemetry.
Additionally there are these but they might already be covered in the tracing integration.
The text was updated successfully, but these errors were encountered:
For more information about how the tracing parts work, see it's readme: https://crates.io/crates/tracing
Sorry, something went wrong.
Here is how it is currently wired up:
trace::info! -> tracing (crate) -> tracing-honeycomb (crate, implements tracing-subscriber) -> tracing-distributed (crate) -> libhoney-rust (crate) -> (http send)
trace::info!
tracing
tracing-honeycomb
tracing-subscriber
tracing-distributed
libhoney-rust
Here is what I think it will look like:
trace::info! -> tracing (crate) -> tracing-opentelemetry (crate, implements tracing-subscriber) -> opentelemetry (crate) -> opentelemtry-oltp (crate) -> (http or grpc send)
tracing-opentelemetry
opentelemetry
opentelemtry-oltp
No branches or pull requests
Honeycomb is slowly switching to opentelemetry and so should this.
The current honeycomb impl this runs on top of (libhoney-rust) has some issues (inefficiencies, and is likely memory leak source).
Here are some links:
Basically, it needs a tracing subscriber which feeds into opentelemetry.
Additionally there are these but they might already be covered in the tracing integration.
https://crates.io/crates/opentelemetry-surf
The text was updated successfully, but these errors were encountered: