Hey everyone, I'm having trouble getting any data on my cloud application. I followed the <docs>, I ...
s
Hey everyone, I'm having trouble getting any data on my cloud application. I followed the docs, I have a fastapi app I'm running locally with
hypercorn main:app
and this is the command I ran. Is there anything additional I need to do to set up telemetry maybe?
Copy code
OTEL_RESOURCE_ATTRIBUTES=service.name=FastAPIProject \
OTEL_EXPORTER_OTLP_ENDPOINT="<https://ingest.us.signoz.cloud:443>" \
OTEL_EXPORTER_OTLP_HEADERS="signoz-access-t{oken=access_token} \
OTEL_EXPORTER_OTLP_PROTOCOL=grpc \
opentelemetry-instrument hypercorn main:app
s
Probably because of the
hypercorn
. Can you run the simple application with python and see if it works?