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
Copy file name to clipboardExpand all lines: instrumentation/opentelemetry-instrumentation-aiohttp-server/src/opentelemetry/instrumentation/aiohttp_server/__init__.py
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,25 @@ async def hello(request):
35
35
app.add_routes([web.get('/', hello)])
36
36
37
37
web.run_app(app)
38
+
39
+
40
+
Configuration
41
+
-------------
42
+
43
+
Exclude lists
44
+
*************
45
+
To exclude certain URLs from tracking, set the environment variable ``OTEL_PYTHON_AIOHTTP_SERVER_EXCLUDED_URLS``
46
+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` to cover all instrumentations) to a string of comma delimited regexes that match the
0 commit comments