Skip to content

Commit 74c366d

Browse files
committed
Change wording on docs
1 parent bc73bdf commit 74c366d

File tree

10 files changed

+20
-20
lines changed
  • instrumentation
    • opentelemetry-instrumentation-django/src/opentelemetry/instrumentation/django
    • opentelemetry-instrumentation-falcon
    • opentelemetry-instrumentation-fastapi/src/opentelemetry/instrumentation/fastapi
    • opentelemetry-instrumentation-flask
    • opentelemetry-instrumentation-pyramid/src/opentelemetry/instrumentation/pyramid
    • opentelemetry-instrumentation-requests
    • opentelemetry-instrumentation-starlette/src/opentelemetry/instrumentation/starlette

10 files changed

+20
-20
lines changed

Diff for: instrumentation/opentelemetry-instrumentation-django/src/opentelemetry/instrumentation/django/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
3333
Exclude lists
3434
*************
35-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_DJANGO_EXCLUDED_URLS``
36-
with comma delimited regexes representing which URLs to exclude.
35+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_DJANGO_EXCLUDED_URLS``
36+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
3737
3838
For example,
3939

Diff for: instrumentation/opentelemetry-instrumentation-falcon/README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Configuration
2121

2222
Exclude lists
2323
*************
24-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_FALCON_EXCLUDED_URLS``
25-
with comma delimited regexes representing which URLs to exclude.
24+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_FALCON_EXCLUDED_URLS``
25+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
2626

2727
For example,
2828

Diff for: instrumentation/opentelemetry-instrumentation-falcon/src/opentelemetry/instrumentation/falcon/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
2727
Exclude lists
2828
*************
29-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_FALCON_EXCLUDED_URLS``
30-
with comma delimited regexes representing which URLs to exclude.
29+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_FALCON_EXCLUDED_URLS``
30+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
3131
3232
For example,
3333

Diff for: instrumentation/opentelemetry-instrumentation-fastapi/src/opentelemetry/instrumentation/fastapi/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ async def foobar():
3434
3535
Exclude lists
3636
*************
37-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_FASTAPI_EXCLUDED_URLS``
38-
with comma delimited regexes representing which URLs to exclude.
37+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_FASTAPI_EXCLUDED_URLS``
38+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
3939
4040
For example,
4141

Diff for: instrumentation/opentelemetry-instrumentation-flask/README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Configuration
2121

2222
Exclude lists
2323
*************
24-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_FLASK_EXCLUDED_URLS``
25-
with comma delimited regexes representing which URLs to exclude.
24+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_FLASK_EXCLUDED_URLS``
25+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
2626

2727
For example,
2828

Diff for: instrumentation/opentelemetry-instrumentation-flask/src/opentelemetry/instrumentation/flask/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def hello():
4848
4949
Exclude lists
5050
*************
51-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_FLASK_EXCLUDED_URLS``
52-
with comma delimited regexes representing which URLs to exclude.
51+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_FLASK_EXCLUDED_URLS``
52+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
5353
5454
For example,
5555

Diff for: instrumentation/opentelemetry-instrumentation-pyramid/src/opentelemetry/instrumentation/pyramid/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@
7979
8080
Exclude lists
8181
*************
82-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_PYRAMID_EXCLUDED_URLS``
83-
with comma delimited regexes representing which URLs to exclude.
82+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_PYRAMID_EXCLUDED_URLS``
83+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
8484
8585
For example,
8686

Diff for: instrumentation/opentelemetry-instrumentation-requests/README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Configuration
2121

2222
Exclude lists
2323
*************
24-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_REQUESTS_EXCLUDED_URLS``
25-
with comma delimited regexes representing which URLs to exclude.
24+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_REQUESTS_EXCLUDED_URLS``
25+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
2626

2727
For example,
2828

Diff for: instrumentation/opentelemetry-instrumentation-requests/src/opentelemetry/instrumentation/requests/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
3434
Exclude lists
3535
*************
36-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_REQUESTS_EXCLUDED_URLS``
37-
with comma delimited regexes representing which URLs to exclude.
36+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_REQUESTS_EXCLUDED_URLS``
37+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
3838
3939
For example,
4040

Diff for: instrumentation/opentelemetry-instrumentation-starlette/src/opentelemetry/instrumentation/starlette/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def home(request):
3636
3737
Exclude lists
3838
*************
39-
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_EXCLUDED_URLS`` or ``OTEL_PYTHON_STARLETTE_EXCLUDED_URLS``
40-
with comma delimited regexes representing which URLs to exclude.
39+
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_STARLETTE_EXCLUDED_URLS``
40+
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
4141
4242
For example,
4343

0 commit comments

Comments
 (0)