opentelemetry-java
                                
                                
                                
                                    opentelemetry-java copied to clipboard
                            
                            
                            
                        OpenTelemetry Java SDK
**Is your feature request related to a problem? Please describe.** Currently, a log warning is produced when any failure during span export occurs. In looking at the `JaegerGrpcSpanExporter` in particular,...
Introduce builder or instead of 4 leave only two by removing `createTracerShim(OpenTelemetry openTelemetry)` and `createTracerShim()` from `OpenTracingShim` class
We need to restrict the keys and values in our baggage, to avoid having it become an untyped free-for-all dumping ground, and to keep it from exceeding the size limits)....
With all the changes to the Context API, we should verify that the OT shim is still propagating context properly.
The current OpenCensus shim is implemented here: https://github.com/open-telemetry/opentelemetry-java/tree/master/opencensus-shim This implementation has some disadvantages regarding the requirement to use a cache of Spans, spans need to be ended in a certain...
Currently when a span is created in SpanBuilderShim.start, we only have the parent OpenTracing spanContext available. This means that we lose the originial full context when calling SpanProcessor.OnStart (not yet...
My impression is that most users of OT use it in manual fashion, i.e. no automatic instrumentation. But we should do a double check in case there's value in putting...
That's a follow-up issue of https://github.com/open-telemetry/opentelemetry-java/issues/2968 Same purpose, but as mentioned on https://github.com/open-telemetry/opentelemetry-java/issues/2968#issuecomment-864370074 I see that the referenced commit is using a CLQ with a separate size tracker to overcome...
**Is your feature request related to a problem? Please describe.** Implementation of composite propagator, with ability to choose which should be used as injectors and which should be used as...
Just a question - Do we have any example to create span for a method with Annotations.? I see @WithSpan in extension for auto instrumenting..But i dont see any annotations...