use this tag for question related to otlp-grpc(OpenTelemetry Protocol for grpc)
Questions tagged [otlp-grpc]
14 questions
4
votes
1 answer
@WithSpan not generating logs
I got the metrics and traces pushed to open telemetry collector successfully from my java application with the configuration
System.setProperty("otel.resource.attributes", "service.name=OtlpExporterExample");
…

A_G
- 2,260
- 3
- 23
- 56
2
votes
4 answers
Rust OpenTelemetry OTLP w/ Honeycomb
I'm trying to use opentelemetry and open telemetry-otlp to provide observability data over OTLP to Honeycomb.
I'm using something like this as a proof of concept (extracted out into this repo if you want to run it:…

outside2344
- 2,075
- 2
- 29
- 52
2
votes
2 answers
Unable to map otlp resource attributes into loki labels
I'm using a spring boot application which sends telemetry data including logs to opentelemetry collector using opentelemetry agent.
The logs are successfully transferred to opentelemetry collector and received at the grafana loki but the Loki labels…

Tanuj
- 33
- 4
1
vote
0 answers
Access the keys of an attribute with Map type in Opentelemetry Collector
I am implementing Opentelemetry Collector in Kubernetes. I have a fluentbit set up for log forwarding. Logs are forwarded to OpenTelemetry fluentforward endpoint and I need to parse the log data and export it to Loki.
**The goal: ** add labels to…

akd
- 11
- 1
1
vote
1 answer
Enable/disable programmatically opentelemetry exporters
I would like to have the ability to enable exporters only when needed for troubleshooting. Disabling the agent wouldn't make sense, since the instrumentation should happen when starting the jvm, so my idea is to start my server with disabled…

Anouar
- 42
- 1
- 13
1
vote
0 answers
OpenTelemetry manual instrumentation NoClassDefFoundError - Java
I've been trying to create a SdkTracerProvider as described in the formal guide of OpenTelemetry (https://opentelemetry.io/docs/instrumentation/java/manual/)
but keep getting a "NoClassDefFoundError" for Marshaler.java which is in…

AKH
- 11
- 2
1
vote
0 answers
Opentelemetry data to Elastic APM. The request could not be executed. Full error message: Required SETTINGS preface not received
I am trying to instrument my spring boot app with opentelemetry and send the telemetry data such as logs, metrics, traces to Elastic APM.
Added otel agent v1.18.0 to classpath.
Elastic APM and apps are running on k8s.
I have followed the docs…

Raushan-cs
- 39
- 6
1
vote
1 answer
OpenTelemetry Export Traces to Elastic APM and Elastic OpenDistro
I am trying to instrument by python app (django based) to be able to push transaction traces to Elastic APM which I can later view using the Trace Analytic in OpenDistro Elastic.
I have tried the following
Method 1:
pip install…

Anirudh Bagri
- 2,346
- 1
- 21
- 33
0
votes
0 answers
New Relic Micrometer instrumentation Error Rate dashboards for Open Telemetry are queried incorrectly
I wanted to configure Micrometer with New Relic Open Telemetry.
I followed instructions from the "Archival note" section of https://github.com/newrelic/micrometer-registry-newrelic
My dependencies:
…

pixel
- 24,905
- 36
- 149
- 251
0
votes
0 answers
How to integrate OTLP exporter alone with apache skywalking
We are using OAP Skywalking framework to perform tracing and other metrics activities. Everything is working fine.
We have a requirement that metrics data has to be expose with OTLP format. Can I use OTLP exporter alone from openTelemetry along with…
0
votes
1 answer
Upgrade to spring boot 3.1 breaks my otel exporter
After upgrading from spring boot 2.7.10 (using sleuth) to 3.1 (micrometer-tracing) I updated my otel exporter config…

Jonathan Chevalier
- 993
- 1
- 9
- 18
0
votes
0 answers
JVM metrics and Service Name Issues with opentelemetry
I am using opentelemetry to send metrics to prometheus and I am using otlp exporter. But I am facing 2 issues there.
Service name is coming as unknown_serive:java .
jvm/auto-instrumented metrics are not coming.
If anyone can help here, it would…

Tanya Itoria
- 1
- 1
0
votes
0 answers
OTLP Collector not collecting traces of .NET application
I'm currently trying to setup an OTLP collector instance within Docker on my local machine to collect traces emitted by a project running on .NET6. The issue is, that while I can create traces (I can see them using the ConsoleExporter) and can get…

felixhir
- 1
- 2
0
votes
1 answer
OpenTelemetry collector does not export Metric attributes to New Relic
I am attempting to export Metrics to an OpenTelemetry collector container from my Node.js app, which then exports it to New Relic.
I am making a simple request counter:
const exporter = new OTLPMetricExporter();
const meter = new MeterProvider({
…

martinx
- 21
- 2