Hi Team, my team set up auto-instrumentation for o...
# support
o
Hi Team, my team set up auto-instrumentation for our applications on EKS, but we are not seeing any tracing data for python apps on the Signoz frontend UI except the
node.js
and
java
application. Is anything wrong, we are using the following guide here
s
How are you sending data? Which exporter are you using? The operator doesn’t support OTLP/gRPC exporter which is usually the default one set by SDK.
o
1. I am using
exporters: [logging, otlp]
as our exporters. 2. It is a flask application, I am using the pre fork model.
s
I was asking for the exporter use in the application.
o
I am using the
OTLPSpanExporter
Copy code
from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import (
    OTLPSpanExporter
I have fixed the issue @Srikanth Chekuri, I made some updates to my flask configuration. I used the fix here. Thank you