opentelemetry-java
                                
                                
                                
                                    opentelemetry-java copied to clipboard
                            
                            
                            
                        OpenTelemetry Java SDK
**Is your feature request related to a problem? Please describe.** I'd like to increase export throughput, and the most obvious way (at least in my case with a remote ingestion...
Frameworks like Spring Boot, MicroProfile, and Dropwizard offer annotations like `@Timed` or `@Counted` for creating metrics from method calls. The benefit is that developers can provide metrics for their business...
**Describe the bug** I have a [Clojure project](https://github.com/steffan-westcott/clj-otel/tree/master/clj-otel-exporter-logging-otlp) which consumes `opentelemetry-exporter-logging-otlp`. The documentation tool (cljdoc) in my build chain fails due to missing dependencies. Also, browsing `opentelemetry-exporter-logging-otlp` classes in IntelliJ...
**Is your feature request related to a problem? Please describe.** MicroProfile community would like to adopt OpenTelemetry tracing not the metrics for the immediate future. At the moment, the opentlelemetry-api...
**Is your feature request related to a problem? Please describe.** Baggage propagation is not intuitive. **Describe the solution you'd like** I would like to be able to access the baggage,...
**Is your feature request related to a problem? Please describe.** TextMapSetter API doesn't work well with immutable Carriers. For example, SQS `SendMessageRequest` in the AWS Java SDK v2. **Describe the...
If the `X-B3-Sampled` header is missing, the propagator is considering this as "not sampled" when creating the resulting TraceFlags. This will cause Samplers to then consider the parent as "not...
Pros: This would enable us to use it across all 4 java repos (core, instrumentation, contrib, docs). In particular, instrumentation repo has many standalone gradle modules, which currently requires copying...
https://github.com/open-telemetry/opentelemetry-java/blob/main/sdk/metrics/src/main/java/io/opentelemetry/sdk/metrics/SdkMeterProviderBuilder.java#L56 Here,I set setResource to all meter.I think all metrics will add attributes from the resource,but it not. I init SdkMeterProvider by follow: ```java SdkMeterProvider.builder().setResource(Resource.create(Attributes.of( AttributeKey.stringKey("instance"), "xxxx"))) .registerMetricReader( PrometheusHttpServer.builder().setHost("127.0.0.1").setPort(9092).newMetricReaderFactory()) .buildAndRegisterGlobal();...
For the exponential histogram, we decided to start with the simplest possible implementation for the backing data structure, and then beat it from there. Some context here: https://github.com/open-telemetry/opentelemetry-java/pull/3724#discussion_r726722725. This is...