We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c6f62e commit e31d845Copy full SHA for e31d845
docs/index.rst
@@ -316,8 +316,11 @@ It is possible to filter or modify traces before they are sent to the agent by
316
configuring the tracer with a processing pipeline. For instance to filter out
317
all traces of incoming requests to a specific url::
318
319
- processing_pipeline = [FilterRequestsOnUrl(r'http://test\.example\.com')]
320
- Tracer.configure(settings={'PROCESSING_PIPELINE': processing_pipeline})
+ Tracer.configure(settings={
+ 'PROCESSING_PIPELINE': [
321
+ FilterRequestsOnUrl(r'http://test\.example\.com'),
322
+ ],
323
+ })
324
325
All the processors in the processing pipeline will be evaluated sequentially
326
for each trace and the resulting trace will either be sent to the agent or
0 commit comments