There's a few PRs on the Python side to introduce denylists of specific HTTP paths and hosts:
https://github.com/open-telemetry/opentelemetry-python/pull/670
Is this an area that we should consider incorporating into conventions? I feel like it would be great to work on a standard that works for a variety of scenarios around http span denylist, and to ensure similar functionality is provided across languages.
There was some discussion regarding that a year ago on #173 but no concrete proposal.
@arminru got it. Thanks for the information.
I'll at least start gathering some information, and maybe others came chime into the discussion.
From the python perspective, our excludes currently support two matches:
Example: https://github.com/open-telemetry/opentelemetry-python/tree/master/ext/opentelemetry-ext-django
Currently they are namespaced by instrumentation, although I believe values could most likely be shared:
@toumorokoshi please make sure you DON'T use blacklists use alternatives like exclude or other options.
Most helpful comment
@toumorokoshi please make sure you DON'T use
blacklistsuse alternatives likeexcludeor other options.