Replies: 1 comment 3 replies
-
|
Excluding certain routes from being traced in flask app doesn't automatically make the other instrumentations also not produce spans under that endpoint. At least that's how it works as of today. May be there is an expectation mismatch here. Or your assumption should be the actual behaviour. cc @open-telemetry/python-approvers |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using opentelemetry instrumentations for
flask,sqlalchemyandredis.I'm doing
sqlalchemyandredisconnection checks (by sqlselect 1and redisping) in endpoint/healthz.I've excluded url
/healthzfrom flask instrumentation, and tracing records of/healthzdid disappeared.But the tracing events of database
select 1and redispingare still emitting as dedicated spans, showing in jaeger query.Am I doing it wrong?
Beta Was this translation helpful? Give feedback.
All reactions