3 questions
2
votes
1
answer
2k
views
Send traces directly from python application to Grafana Cloud's tempo instance without Grafana agent
Here is python script that sends test trace directly to tempo instance :
import base64
from typing import Tuple
from opentelemetry import trace
from opentelemetry.exporter.otlp.proto.http....
1
vote
1
answer
7k
views
How to Transform OpenTelemetry Collector Logs into JSON Format?
i'm currently working with the OpenTelemetry Collector and would like to format its logs in JSON. I've been using a YAML configuration file for the collector, but I'm unsure how to specify that the ...
0
votes
1
answer
437
views
Spring Boot starter - OTEL cannot send data to otel-collector
I do have very basic configuration of Spring Boot (3.4.0) application with opentelemetry-spring-boot-starter and otel collector.
Unfortunately when I try to send metrics and logs to local Otel ...