skip to Main Content

Azure monitor exporter with Golang

I am currently trying to connect my Go application to Azure monitor, and I am facing issues right away with the "otel" contrib package (https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuremonitorexporter) The exporter that I am trying to use does not implement the ExportSpans function for…

VIEW QUESTION

ASP.NET Core 7: using OpenTelemetry to send traces/metrics to Grafana

I'm trying to send metrics/traces from my ASP.NET Core 7 application to Grafana. Here's my Docker Compose file. version: '3.4' networks: my-network: name: my_network services: sample.restaurant.server: image: ${DOCKER_REGISTRY-}samplerestaurantserver build: context: . dockerfile: sample/Sample.Restaurant.Server/Dockerfile environment: - ASPNETCORE_ENVIRONMENT=Development - ASPNETCORE_URLS=https://+:443;http://+:80 - OTEL_EXPORTER_OTLP_ENDPOINT=grpc://otel-collector:4317…

VIEW QUESTION

How can I register opentelemetry lambda exention?

I am following this repo https://github.com/open-telemetry/opentelemetry-lambda/blob/main/collector/README.md to deploy a lambda with opentelemetry extension. I have build the repo and created a lambda layer by uploading the file nodejs/packages/layer/build/layer.zip. Then I created a lambda who uses this layer and added 2…

VIEW QUESTION

464 error with new relic data export from the Java 8 application running with open telemetry agent – Docker

It works fine when I run Java 11: java -javaagent:./otel/opentelemetry-javaagent.jar -DOTEL_EXPORTER_OTLP_COMPRESSION=gzip -DOTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT=4095 -DOTEL_JAVA_DISABLED_RESOURCE_PROVIDERS=io.opentelemetry.sdk.extension.resources.ProcessResourceProvider -DOTEL_EXPERIMENTAL_EXPORTER_OTLP_RETRY_ENABLED=true -DOTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE=DELTA -Dotel.traces.exporter=otlp -Dotel.metrics.exporter=otlp -Dotel.logs.exporter=otlp -Dotel.exporter.otlp.endpoint=https://otlp.nr-data.net:4317 -Dotel.resource.attributes=service.name=app-service -Dotel.exporter.otlp.headers=api-key=<api-key> -Dotel.javaagent.debug=false -jar ./target/app-service-0.0.1-SNAPSHOT.jar But when I run in Java 8, it fails: ENTRYPOINT ["java", "-Dotel.traces.exporter=otlp", "-Dotel.metrics.exporter=otlp", "-Dotel.logs.exporter=otlp", "-Dotel.exporter.otlp.endpoint=https://otlp.nr-data.net:4317", "-DOTEL_EXPORTER_OTLP_COMPRESSION=gzip",…

VIEW QUESTION
Back To Top
Search