jack-berg
jack-berg
Scopes have [attributes](https://github.com/open-telemetry/opentelemetry-specification/pull/2579). We need to extend our data model to support this, which is particularly important [metrics](https://github.com/open-telemetry/opentelemetry-specification/pull/2702) and for the [event api](https://github.com/open-telemetry/opentelemetry-specification/pull/2676) where a scope attribute called `event.domain` seems...
`SimpleHttpClientTest` [failed](https://github.com/open-telemetry/opentelemetry-java/runs/7981631151?check_suite_focus=true) with: ``` SimpleHttpClientTest$HttpsServerTest > goodCert() FAILED org.opentest4j.AssertionFailedError: expected: "Thanks for trusting me" but was: "" at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at io.opentelemetry.sdk.extension.aws.resource.SimpleHttpClientTest$HttpsServerTest.goodCert(SimpleHttpClientTest.java:84) ```
The spec [PR #2676](https://github.com/open-telemetry/opentelemetry-specification/pull/2676) to add a log API and the followup [PR #2768](https://github.com/open-telemetry/opentelemetry-specification/pull/2768) to align log API / SDK component naming impacts SDKs which have been prototyping the log...
With #2703 instrumentation scope name and version are included as attributes in the prometheus exporter, which helps to accommodate OpenTelemetry metric's ability to have instruments with the same name under...
Exponential histograms have implementations in Java, Dotnet, Go, and Python. There's still the idea of the [zero threshold](https://github.com/open-telemetry/opentelemetry-specification/pull/2665), which needs to be defined in the proto and likely needs to...
The [propagators distribution](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/context/api-propagators.md#propagators-distribution) section describes the set of propagators that MUST and MAY be included in OpenTelemetry distributions. There's [explicit text](https://github.com/open-telemetry/opentelemetry-specification/blame/main/specification/context/api-propagators.md#L350-L352) that "vendor-specific protocols such as AWS X-Ray trace header...
The [OpenTelemetry Transformation to non-OTLP formats](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/common/mapping-to-non-otlp.md#instrumentation-scope-attributes) has the following to say about scope attributes: > Exporters to formats that don't have a concept that is equivalent to the Scope SHOULD...
Went and tried to run the adservice locally and ran into a number of issues. ## Changes - Downgrade to latest java LTS version, 17. The adservice is currently on...
This demonstrates how file based configuration can be used to easily configure [RuleBasedRoutingSampler](https://github.com/open-telemetry/opentelemetry-java-contrib/blob/main/samplers/src/main/java/io/opentelemetry/contrib/sampler/RuleBasedRoutingSampler.java) to drop spans with match a particular pattern. It requires changes to several repos, but if the...