254 questions
0
votes
0
answers
34
views
How to use k8slogreceiver in OpenTelemetry Collector – Receiver not recognized
I am trying to setup log collection with usage of k8slog receiver in OpenTelemetry Collector. I have added it as receiver, but i get an error that it doesn't exist as an option.
Here is my spec:
...
0
votes
1
answer
63
views
Getting a "connection refused" error when attempting to upload metrics to an OpenTelemetry collector
I'm trying to build a simplified example of a Go application which exports metrics using OpenTelemetry and visualizes them in Grafana. I have the following directory structure:
.
├── docker-compose....
0
votes
1
answer
62
views
Otel-collector not sending traces to jaeger
I have a few Java applications that have working otel tracing implementations. The details of how this works is largely irrelevant (implemented using micrometer and spring-boot-actuator) but the point ...
0
votes
0
answers
21
views
Initialize OpenTelemetry in the app that already has OTEL initialized
I'm developing a Node library which collects certain usage data and sends it over OTLP to my collector.
Inside the library, I'm initializing OTEL like this:
const sdk = new NodeSDK({
...
0
votes
1
answer
47
views
OpenTelemetry filter syntax
I have the Otel config as shown below. If there is any syntax that allows me to specify something like this:
resource.attributes["service.name"] not in ["test", "test2"]
...
0
votes
0
answers
28
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 ...
1
vote
0
answers
21
views
receiver/filelog remove fields after syslog_parser fails
Using remove operator after syslog_parser operator for [receiver/filelog] to cleanup log output fails.
Current receiver configuration:
receivers:
filelog/my-app-name:
include_file_name: false
...
0
votes
0
answers
83
views
Parsing json log in opentelemetry-collector from filelog
I am using the following docker image - otel/opentelemetry-collector-contrib:latest
I get service logs from files and send them to seq. Here is the configuration:
receivers:
filelog:
include: [/...
0
votes
0
answers
25
views
Opentelemetry healthcheck get datapoint every hours instead of 30s
I'm collecting datapoint with httpcheck to ping a service to see if it's up. Doing with an interval of 30s. But working with t I had strange issue where I can see I have no data. Looking at the DB I ...
0
votes
0
answers
21
views
Why is cgroupruntime seemingly missing from the extensions in otel collector contrib distribution?
I'm building the image for tag 0.126.0 and attempting to add the cgroupruntime extension. I get the following error:
Error: failed to get config: cannot unmarshal the configuration: decoding failed ...
0
votes
0
answers
56
views
otel collector receiver/filelog is missing events after a log file rotates
Using the otel collector filelog receiver to get Openshift audit files and send them to splunk. I noticed that after a log file is rotated some events at the end the rotated log file are missing. I ...
0
votes
0
answers
90
views
OpenTelemetry .NET Automatic Instrumentation: FileLoadException for OpenTelemetry.Instrumentation.Runtime
I’m encountering a issue with a .NET 8 application (ClaimSubmissionService) running in a Kubernetes pod, using OpenTelemetry .NET Automatic Instrumentation (v1.11.0). The application does not send ...
0
votes
1
answer
167
views
Jaeger v2 with OpenTelemetry on Kubernetes [closed]
I am trying to setup jaegerv2 with open telemetry on AKS following this
I have followed the exact steps but I am getting this error when the collector pod starts (I have attached the pod logs below)
...
0
votes
1
answer
48
views
Using OpenTelemetry Collector develop Segment Breakdown (like New Relic) / Accessing Parent Span Name in Child Span
I have set up auto-instrumentation for my Java application, sending trace data to the OpenTelemetry Collector. The traces are stored in Tempo, while internal OpenTelemetry Collector metrics and span ...
0
votes
0
answers
132
views
Enriching fluent-bit logs with opentelemetry resource attributes while sending logs to loki
Context:
I am collecting Kubernetes logs from the cluster using fluent-bit v3.2.
And I am sending the logs to Loki.
I want to migrate to be compatible with OpenTelemetry.
I know Fluent-bit supports ...