aws-otel-community
aws-otel-community copied to clipboard
Welcome to the AWS Distro for OpenTelemetry project. If you're using monitoring and observability tools for AWS products and services, this is a great place to ask questions, request features and netw...
[Instrumenting the AWS SDK](https://aws-otel.github.io/docs/getting-started/java-sdk/trace-manual-instr) docs shows: ```java ... .addExecutionInterceptor(AwsSdkTracing.create(openTelemetry).newExecutionInterceptor()) ``` however, it should be: ```java ... .addExecutionInterceptor(AwsSdkTelemetry.create(openTelemetry).newExecutionInterceptor()) ``` using the latest dependencies as of this writing: ```groovy implementation(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.14.0-alpha")) implementation("io.opentelemetry.instrumentation:opentelemetry-aws-sdk-2.2")```
Hello, I'm working on a prototype to instrument application metrics to Prometheus for an application hosted in ECS with an application load balanced fargate service. The AWS OTEL collector is...
We have an ECS setup that runs a scheduled task every 4 hours which takes
Several customers are looking for unsampled metrics that are derived from spans. These metrics include error, faults, throttle, latency, and total request counts. Also, we need to look into the...
Span's add_event() and record_exception() are not working when exporter is X-Ray. For other exporters like Jaeger I could see Logs as a separate field in UI for add_event() and record_exception()....
**Describe the bugs** - The collector doesn't check the metrics path nor port annotated on pods - Can't collect all spark executor metrics (These metrics don't have a type assigned...