136 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
35
views
How can I capture external (off-process) telemetries in my otel span?
I am developing a framework for running LLM-based agents, and I am collecting telemetry from my framework via otel. I have a central function where the agent functionality is being intercepted step by ...
1
vote
1
answer
91
views
Splunk otel collector unable to process file log receiver
I am trying to send Azure Devops agent logs to cluster receiver.
Here is the receiver config block
apiVersion: v1
kind: ConfigMap
metadata:
name: otel-sidecar-config
...
-1
votes
1
answer
57
views
Empty trace_id and span_id with Hono and OpenTelemetry
I have a Hono app that I want to instrument for observability with OpenTelemetry and Pino logger. Specifically, I want to generate logs that have the trace_id and span_id attributes, but in the ...
Best practices
0
votes
1
replies
24
views
would like to implement OTEL agent as sidecar along with app container in aks
i am implementing logging mechanism where otel agent is deployed as sidecar then forwards to otel collector which runs on cluster level which interns forwards the log to gateway agent. from then it ...
0
votes
0
answers
49
views
How to Reduce Latency Overhead of OpenTelemetry C++ SDK in High-Performance Applications?
I’m planning to use the OpenTelemetry C++ SDK in a high-performance, low-latency application to export metrics.
However, during my POC, I’ve observed non-trivial latency impact when instrumenting even ...
Advice
0
votes
0
replies
48
views
Open telemetry upgrade
I have been using:
"@opentelemetry/api": "=1.4.1", "
@opentelemetry/exporter-jaeger": "^1.13.0",
"@opentelemetry/instrumentation-express": &...
1
vote
1
answer
125
views
OpenTelemetry / Spring Boot — class-loading issue with helper class
I am using Java 21, Spring Boot 3.3.12, Otel java agent 2.21.0 and a simple Product Service application.
Below is my application's Dockerfile:
FROM openjdk:21-jdk-slim
WORKDIR /app
ARG JAR_FILE=...
0
votes
1
answer
84
views
Duplication of count metric caused by scheduler running on multiple pod
Background: We are fetching the total number of tenants from the database and pushing a metric via a scheduler to Dynatrace using OpenTelemetry spring boot starter. Since there are three replica pods, ...
2
votes
0
answers
81
views
Exporting OpenTelemetry to Azure Monitor and elsewhere
I have a project that uses Serilog to write the logs to a file and to the console. I want to implement logging/tracing with OpenTelemetry and export that telemetry to Azure Monitor.
However, if I ...
0
votes
0
answers
165
views
Uvicorn not getting trace id from otel in error logs (trace_id=0)
I have a test FastAPI application:
from fastapi import FastAPI, Request
from opentelemetry.exporter.otlp.proto.grpc import trace_exporter
from opentelemetry.instrumentation.asgi import ...
1
vote
0
answers
296
views
Grafana Tempo not receiving OpenTelemetry traces from .NET services - only /health and /metrics traces visible
I have a multi-service .NET application running in Docker Compose with Grafana Tempo for distributed tracing. While Tempo is running and accessible, I'm only seeing traces for /health and /metrics ...
0
votes
0
answers
37
views
How to extract labels/custom metadata from a virtual machine in GCP in otelcol-contrib package
We have custom metadata/labels on GCP virtual machines that we plan to add as a label to the OTEL collector.
However, don't see how to extract it by referring to https://github.com/open-telemetry/...
Ashwin's user avatar
- 2,923
0
votes
1
answer
102
views
SQL Server user permissions needed for OpenTelemetry collector sqlserverreceiver
I have an otel collector file like this:
receivers:
sqlserver:
collection_interval: 30s
server: "your-sqlserver-host" # Use 'server' instead of 'endpoint'
port: ...
0
votes
0
answers
122
views
Setup otel-collector to send internal logs and traces to Grafana Loki and Tempo?
I have been trying to get the latest version (0.128.0) to send its internal logs and traces to my Tempo and Loki instances.
Has anyone managed to get this working?
Would be great to get a sample of ...
0
votes
0
answers
67
views
Semantic kernel OTel metrics in Blazor
I have a Blazor server application using Semantic Kernel and OTel. I'd like to send Semantic Kernel metrics to Application Insights. Here's my code:
AppContext.SetSwitch("Microsoft.SemanticKernel....