jack-berg
jack-berg
[AgentDescription.identifying_attributes](https://github.com/open-telemetry/opamp-spec/blob/main/specification.md#agentdescriptionidentifying_attributes) says the following about `service.name`: > service.name should be set to a reverse FQDN that uniquely identifies the Agent type, e.g. "io.opentelemetry.collector" This definition contradicts the `service.name` definition in...
### Component(s) prometheus-client-bridge ### What happened? The functionality is implemented in `opentelemetry-java` in https://github.com/open-telemetry/opentelemetry-java/pull/6015, which allows you to associate your own `PrometheusRegistry` with `PrometheusHttpServer`. ### Component version latest ### Log...
A prototype solution for #6197. The idea is to start to more fully realize the potential of scope as a concept. Today, scope is just a piece of metadata attached...
Suppose you have a span hierarchy of ({tracerName}:{spanKind}:{spanName}): ``` tracerA:server:parent -> tracerB:internal:child -> tracerC:client:grandchild ``` And you decide that internal spans from `tracerB` are too noisy. You want to turn...
Followup to #5941 which adds support for OTLP gRPC exporters.
The [OTLP protobuf marshalers](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/otlp/common/src/main/java/io/opentelemetry/exporter/internal/otlp) maintain a bunch of state as they transform `SpanData`, `MetricData`, `LogRecordData` to an intermediate representation before serializing. We should investigate whether we can eliminate this state...
Replaces draft #5873. @open-telemetry/java-instrumentation-maintainers in the 9/21 Java SIG meeting I brought up bringing the file configuration prototype into the java agent, and received feedback that it will be important...
> Writing this made me realize that its silly that we incubate APIs in both `opentelemetry-api-events` and `opentelemetry-extension-incubator`. I propose we merge events into `opentelemetry-extension-incubator`, and do it in lockstep...
Originally discussed in this [comment](https://github.com/open-telemetry/opentelemetry-java/pull/5986#discussion_r1412295799), the idea is to make `AutoConfigurationCustomizer#addSpanProcessorCustomizer` more useful by allowing you to extract the configured SpanExporter/LogRecordExporter from the processor, and plug it into your own...