-
Notifications
You must be signed in to change notification settings - Fork 454
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
Add trace-id as a field for other tracing layers #625
Comments
Generally, it's not possible directly. Without Personally, I found method 1 should be most reasonable but may also need some input from @jtescher any thoughts? |
Not sure that there is a great way of doing this currently, you can manually get an otel context from tracing via Span::current().context() and then get the id via context.span().span_context().trace_id(), which would then let you add that in any log locations, but it's not very ergonomic. |
Would it be possible to add some kind of hook to the log formatter or the log layer that retrieved additional fields? Then I could use that to add a hook that retrieved the otel trace and added that when formatting. |
That sounds like an interesting topic to explore. We could try something on the |
Filed an issue in |
I recently did it in a text formatter here: https://github.com/apollographql/router/blob/dev/apollo-router/src/plugins/telemetry/formatters/text.rs#L120 if it can help |
@bjchambers Pinging on an old issue in light of new developments! |
I also need trace_ids to exist across traces and logs, and agree puling from a span context is not ergonomic.
@cijothomas I actually tried to get this to work earlier this week. I was unsuccessful because I couldn't get an OLTP exporter (like tonic in this example) to work without using code on the main branch, which won't work with latest Technically, I believe the basic Did I miss something with my exploration or do I need to wait until new releases? |
No, thats not how it works. It has nothing to do with stdout. opentelemetry-appender-tracing leverages opentelemetr's logging bridge api and converts tracing events to OTel's logrecord. And then it can be exported to whatever exporter is configured : OTLP or stdout or inmemory or something else. https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/examples/basic-otlp/src/main.rs#L65 This should work as-is, but if not working - can you list the exact steps you followed so we can fix that example? tracing_opentelemetry being broken could be temporary as it has to adjust to breaking changes from this repo.. Do you have a tracking issue in that repo for this? |
@cijothomas Apologies, let me try restating my problem in a different way. I tried to use this example, but with an exporter like tonic and not stdout. I could not figure out how to do this without using changes on otel main due to the lack of any examples. Because I was now referencing main directly via the cargo git hint, I could not use tracing_opentelemetry because the compatibility was broken due to refactors. Things being incompatible is expected given I was not using published crates and I'm sure tracing_opentelemetry will address the breaking changes otel has created once new crates are published on the otel side. The code I fiddled with looked something like this: let test = opentelemetry_sdk::logs::LoggerProvider::builder()
.with_batch_exporter(
opentelemetry_otlp::new_exporter().tonic().with_env(),
opentelemetry::runtime::Tokio,
)
.build(); The error was:
I found this on main which I thought was relevant for future releases, which is why I decided to play with it, but ended up hitting the mentioned incompatibility blocker. With that said, let me take an even further step back since I could be misunderstanding the purpose of the appender, as you noted. I am using the tracing crate and would like to take tracing events and send them to the opentelemetry collector as logs using a tonic exporter, similar to how I have successfully done with traces. I assumed that's what the appender could help me with. Are there any working examples the use case I'm after with currently released crates, is it not possible until a future release, or am I misunderstanding the purpose of the appender? |
Yes this is exactly the purpose of opentelemetry-appender-tracing! The examples from https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp/examples is supposed to help with that! These should be working examples. Apart from the incompatibility issue with tracing-opentelemetry, are there other issues you faced? Separately, the tracing-opentelemetry could duplicate the telemetry as it can sent the events as SpanEvents, and the appender can send the events as LogRecords. This is something that need fix, tracked by #1111 |
@cijothomas I could be mistaken, but those examples seem to never set the Comparing this example to the example in the opentelemetry-appender-tracing, I still feel there's a problem of tying things together. In the If you know of or can provide any working examples for |
These examples should work! i.e the logs emitted using info!, and other macros, would land in OTEL Collector as LogRecords |
@cijothomas I appreciate the quick reply. I'll try and find time to play with it in the near future. |
I still haven't been able to get this example to work =/ Here's kinda what's gotten close but I still don't have any connection between the logs and the traces https://gist.github.com/nwisemanII/05f1e0e879133d51f6edfcf04a7f5a8d edit: ( addition ) The only other thing I can possibly think of is doing something really strange like exporting to an InMemory log and then replaying that into the tracer? Something along those lines, I figured there was probably an easier way to do it. |
Hello guys. I have the same issue. I am using this example (https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/examples/basic-otlp/src/main.rs#L65) and works perfectly. Any idea how can I add the context automatically to my logs? |
@germankuber We have an open issue #1378 for the problem. There is no solution as of now, though one of the important issues to be resolved. There is some work done #1394 if someone wants to continue on that. Else please circle back in couple of months. |
I'm trying to set logging and tracing up for use with Grafana Loki and Grafana Tempo. I'd like to be able to get the otel Trace ID and include it in the logs. I don't see any way to do this.
I'm using:
tracing
- to create spans / events within my Rust codetracing-subscriber
to add two subscribers, including one to format logs as JSON.tracing-opentelemetry
to use opentelemetry as a subscriber.opentelemetry
andopentelemetry-otlp
to report traces to an OTEL collector.I've looked in a variety of places:
tracing-subscriber
to add the trace ID. I was thinking I could then get the opentelemetryContext
which should have the trace ID and just add that as a field. But, I couldn't find a way to hook into the JSON formatting and add this code.Is this something that is currently possible? If so, are there any examples how to have the logs include the trace ID? If it's not possible, any thoughts on where it could be added? I'm happy to take a stab at it if it's not already possible.
The text was updated successfully, but these errors were encountered: