From b0210a97f575201a115d3ef9fc2b37e7ab63d4a5 Mon Sep 17 00:00:00 2001 From: Ronen Schaffer Date: Thu, 4 Apr 2024 01:42:10 +0300 Subject: [PATCH] Update example.md (#4244) --- content/en/docs/languages/python/automatic/example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/languages/python/automatic/example.md b/content/en/docs/languages/python/automatic/example.md index 2b66f9417ed6..d1c087a3f342 100644 --- a/content/en/docs/languages/python/automatic/example.md +++ b/content/en/docs/languages/python/automatic/example.md @@ -284,7 +284,7 @@ instrumentor.instrument_app(app, excluded_urls="/server_request") ``` After running the example again, no instrumentation should appear on the server -side. This is because or the `excluded_urls` option passed to `instrument_app` +side. This is because of the `excluded_urls` option passed to `instrument_app` that effectively stops the `server_request` function from being instrumented as its URL matches the regular expression passed to `excluded_urls`.