Ben Chambers

Results 83 comments of Ben Chambers

Hmm... I may have read it wrong. The documentation suggested that the version was necessary unless you wanted to use the version that was selected based on transitive dependencies of...

Depending on how the location is reported it shouldn't need the `Files`. For instance, if it just reports the minimum `(FileId, usize)` of the maximum primary label, it would only...

That seems like a good work around. Gave that a try, although it seems like the trace ID is missing in cases where it has been set by a propagator...

Have you tried this? I've gotten it to include some ID in the logs, but it doesn't match the ID being used in the actual traces reported via open telemetry....

@RemiKalbe interesting. I'm noticing that it gets an ID, but it doesn't map to any traces that are stored. I'm trying to figure out what is causing the problem. I'm...

> @bjchambers > > 1. I'm using Tokio > > 2. Also using tonic > > > Here is my code > > ```rust > let filter = EnvFilter::try_from_default_env() >...

Ah-hah, I think this helped me get it working too. I based my code on https://github.com/tokio-rs/tracing/issues/1531#issuecomment-1136971089. I'm using Tonic with a gRPC trace propagation. The part that I was missing...

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...

Filed an issue in `tracing` to see if this would be possible to add over there.

We’re working on a better experience for profiling but there is rudimentary support for profiling available in the SDK. # What you’ll need 1. An installation of [pprof](https://github.com/google/pprof) 2. An...