Anuraag (Rag) Agrawal

Results 91 issues of Anuraag (Rag) Agrawal

Currently, instrumentation_scope is not used in the documentation for converting OTLP metrics to Prometheus. However, because it is part of identity for the OTLP model, it should be added as...

spec:metrics

OpenMetrics spec gives explicit advice to not include timestamps in exported data. https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#exposing-timestamps So we should probably follow this. Currently, we only mention timestamps for exemplars https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/datamodel.md#exemplars-2 We should remove...

spec:metrics

Currently we publish collector only to global S3 buckets. In certain opt-in regions, global buckets cannot be accessed so it would be helpful to publish to regionalized buckets as well.

enhancement
ADOT collector
CI/CD

I notice there are three patterns for comments Go-style, repeating name in javadoc e.g. Sum represents the type Starting with It, otherwise similar to go-style Java-style, documenting behavior directly e.g....

release:after-ga

Since the latest version of errorprone, I found `MethodCanBeStatic` often flags this sort of usage. ```java class Something { public static Something create() { Helper helper = "bar".equals(System.getProperty("foo")) ? new...

Proposal for an instrumentation API to assist in providing high quality, consistent instrumentation.

python/src/otel/Makefile has commands like `yum install` - presumably this isn't for normal use. Do we still need it or can delete?

Our layers don't work on the vanilla, non-corretto Java 8 runtime. This is likely because that runtime uses an old version of Java 8 (if the docs 1.8.0 is to...

The Java 8 Corretto runtime for Lambda explicitly enables class data sharing. We need to rewrite the JVM command line to append `-Xshare:off` to disable this behavior. Java 11 does...

The collector may become unhealthy even without crashing due to some issue. If Lambda extensions have a mechanism for reporting healthyness, for example by exposing the health check HTTP endpoint...