You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the current logic paths and routes that are blacklisted won't generate a span (and actually interrupt the trace at that point) even if the trace is being sampled. Imo that's not what we usually want.
We usually blacklist paths like /status, /swagger.json or /status/metrics. We do that because we don't want healthchecks and other automated calls to be traced.
But imo if we're in the middle of a trace I'm interested to know if my code is calling the status endpoint of another service and spending time on that.
With the current logic paths and routes that are blacklisted won't generate a span (and actually interrupt the trace at that point) even if the trace is being sampled. Imo that's not what we usually want.
We usually blacklist paths like
/status
,/swagger.json
or/status/metrics
. We do that because we don't want healthchecks and other automated calls to be traced.But imo if we're in the middle of a trace I'm interested to know if my code is calling the status endpoint of another service and spending time on that.
@adriancole @bplotnick thoughts?
The text was updated successfully, but these errors were encountered: