mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-08-01 06:33:52 +08:00
Add support for regular expression matching and sanitizing of headers in Pyramid. (#1414)
This commit is contained in:
@ -27,6 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
([#1323](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1323))
|
([#1323](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1323))
|
||||||
- `opentelemetry-instrumentation-wsgi` Add support for regular expression matching and sanitization of HTTP headers.
|
- `opentelemetry-instrumentation-wsgi` Add support for regular expression matching and sanitization of HTTP headers.
|
||||||
([#1402](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1402))
|
([#1402](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1402))
|
||||||
|
- `opentelemetry-instrumentation-pyramid` Add support for regular expression matching and sanitization of HTTP headers.
|
||||||
|
([#1414](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1414))
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ Using ``pyramid.tweens`` setting:
|
|||||||
---------------------------------
|
---------------------------------
|
||||||
|
|
||||||
If you use Method 2 and then set tweens for your application with the ``pyramid.tweens`` setting,
|
If you use Method 2 and then set tweens for your application with the ``pyramid.tweens`` setting,
|
||||||
you need to add ``opentelemetry.instrumentation.pyramid.trace_tween_factory`` explicitly to the list,
|
you need to explicitly add ``opentelemetry.instrumentation.pyramid.trace_tween_factory`` to the list,
|
||||||
*as well as* instrumenting the config as shown above.
|
*as well as* instrumenting the config as shown above.
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
@ -79,8 +79,9 @@ Configuration
|
|||||||
|
|
||||||
Exclude lists
|
Exclude lists
|
||||||
*************
|
*************
|
||||||
To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_PYRAMID_EXCLUDED_URLS``
|
To exclude certain URLs from tracking, set the environment variable ``OTEL_PYTHON_PYRAMID_EXCLUDED_URLS``
|
||||||
(or ``OTEL_PYTHON_EXCLUDED_URLS`` as fallback) with comma delimited regexes representing which URLs to exclude.
|
(or ``OTEL_PYTHON_EXCLUDED_URLS`` to cover all instrumentations) to a string of comma delimited regexes that match the
|
||||||
|
URLs.
|
||||||
|
|
||||||
For example,
|
For example,
|
||||||
|
|
||||||
@ -92,54 +93,93 @@ will exclude requests such as ``https://site/client/123/info`` and ``https://sit
|
|||||||
|
|
||||||
Capture HTTP request and response headers
|
Capture HTTP request and response headers
|
||||||
*****************************************
|
*****************************************
|
||||||
You can configure the agent to capture predefined HTTP headers as span attributes, according to the `semantic convention <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md#http-request-and-response-headers>`_.
|
You can configure the agent to capture specified HTTP headers as span attributes, according to the
|
||||||
|
`semantic convention <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md#http-request-and-response-headers>`_.
|
||||||
|
|
||||||
Request headers
|
Request headers
|
||||||
***************
|
***************
|
||||||
To capture predefined HTTP request headers as span attributes, set the environment variable ``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST``
|
To capture HTTP request headers as span attributes, set the environment variable
|
||||||
to a comma-separated list of HTTP header names.
|
``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST`` to a comma delimited list of HTTP header names.
|
||||||
|
|
||||||
For example,
|
For example,
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST="content-type,custom_request_header"
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST="content-type,custom_request_header"
|
||||||
|
|
||||||
will extract ``content-type`` and ``custom_request_header`` from request headers and add them as span attributes.
|
will extract ``content-type`` and ``custom_request_header`` from the request headers and add them as span attributes.
|
||||||
|
|
||||||
It is recommended that you should give the correct names of the headers to be captured in the environment variable.
|
Request header names in Pyramid are case-insensitive and ``-`` characters are replaced by ``_``. So, giving the header
|
||||||
Request header names in pyramid are case insensitive and - characters are replaced by _. So, giving header name as ``CUStom_Header`` in environment variable will be able capture header with name ``custom-header``.
|
name as ``CUStom_Header`` in the environment variable will capture the header named ``custom-header``.
|
||||||
|
|
||||||
The name of the added span attribute will follow the format ``http.request.header.<header_name>`` where ``<header_name>`` being the normalized HTTP header name (lowercase, with - characters replaced by _ ).
|
Regular expressions may also be used to match multiple headers that correspond to the given pattern. For example:
|
||||||
The value of the attribute will be single item list containing all the header values.
|
::
|
||||||
|
|
||||||
Example of the added span attribute,
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST="Accept.*,X-.*"
|
||||||
|
|
||||||
|
Would match all request headers that start with ``Accept`` and ``X-``.
|
||||||
|
|
||||||
|
To capture all request headers, set ``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST`` to ``".*"``.
|
||||||
|
::
|
||||||
|
|
||||||
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST=".*"
|
||||||
|
|
||||||
|
The name of the added span attribute will follow the format ``http.request.header.<header_name>`` where ``<header_name>``
|
||||||
|
is the normalized HTTP header name (lowercase, with ``-`` replaced by ``_``). The value of the attribute will be a
|
||||||
|
single item list containing all the header values.
|
||||||
|
|
||||||
|
For example:
|
||||||
``http.request.header.custom_request_header = ["<value1>,<value2>"]``
|
``http.request.header.custom_request_header = ["<value1>,<value2>"]``
|
||||||
|
|
||||||
Response headers
|
Response headers
|
||||||
****************
|
****************
|
||||||
To capture predefined HTTP response headers as span attributes, set the environment variable ``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE``
|
To capture HTTP response headers as span attributes, set the environment variable
|
||||||
to a comma-separated list of HTTP header names.
|
``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE`` to a comma delimited list of HTTP header names.
|
||||||
|
|
||||||
For example,
|
For example,
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE="content-type,custom_response_header"
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE="content-type,custom_response_header"
|
||||||
|
|
||||||
will extract ``content-type`` and ``custom_response_header`` from response headers and add them as span attributes.
|
will extract ``content-type`` and ``custom_response_header`` from the response headers and add them as span attributes.
|
||||||
|
|
||||||
It is recommended that you should give the correct names of the headers to be captured in the environment variable.
|
Response header names in Pyramid are case-insensitive. So, giving the header name as ``CUStom-Header`` in the environment
|
||||||
Response header names captured in pyramid are case insensitive. So, giving header name as ``CUStomHeader`` in environment variable will be able capture header with name ``customheader``.
|
variable will capture the header named ``custom-header``.
|
||||||
|
|
||||||
The name of the added span attribute will follow the format ``http.response.header.<header_name>`` where ``<header_name>`` being the normalized HTTP header name (lowercase, with - characters replaced by _ ).
|
Regular expressions may also be used to match multiple headers that correspond to the given pattern. For example:
|
||||||
The value of the attribute will be single item list containing all the header values.
|
::
|
||||||
|
|
||||||
Example of the added span attribute,
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE="Content.*,X-.*"
|
||||||
|
|
||||||
|
Would match all response headers that start with ``Content`` and ``X-``.
|
||||||
|
|
||||||
|
To capture all response headers, set ``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE`` to ``".*"``.
|
||||||
|
::
|
||||||
|
|
||||||
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE=".*"
|
||||||
|
|
||||||
|
The name of the added span attribute will follow the format ``http.response.header.<header_name>`` where ``<header_name>``
|
||||||
|
is the normalized HTTP header name (lowercase, with ``-`` replaced by ``_``). The value of the attribute will be a
|
||||||
|
single item list containing all the header values.
|
||||||
|
|
||||||
|
For example:
|
||||||
``http.response.header.custom_response_header = ["<value1>,<value2>"]``
|
``http.response.header.custom_response_header = ["<value1>,<value2>"]``
|
||||||
|
|
||||||
|
Sanitizing headers
|
||||||
|
******************
|
||||||
|
In order to prevent storing sensitive data such as personally identifiable information (PII), session keys, passwords,
|
||||||
|
etc, set the environment variable ``OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SANITIZE_FIELDS``
|
||||||
|
to a comma delimited list of HTTP header names to be sanitized. Regexes may be used, and all header names will be
|
||||||
|
matched in a case-insensitive manner.
|
||||||
|
|
||||||
|
For example,
|
||||||
|
::
|
||||||
|
|
||||||
|
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SANITIZE_FIELDS=".*session.*,set-cookie"
|
||||||
|
|
||||||
|
will replace the value of headers such as ``session-id`` and ``set-cookie`` with ``[REDACTED]`` in the span.
|
||||||
|
|
||||||
Note:
|
Note:
|
||||||
Environment variable names to capture http headers are still experimental, and thus are subject to change.
|
The environment variable names used to capture HTTP headers are still experimental, and thus are subject to change.
|
||||||
|
|
||||||
API
|
API
|
||||||
---
|
---
|
||||||
|
@ -40,6 +40,9 @@ class InstrumentationTest:
|
|||||||
"content-type": "text/plain; charset=utf-8",
|
"content-type": "text/plain; charset=utf-8",
|
||||||
"content-length": "7",
|
"content-length": "7",
|
||||||
"my-custom-header": "my-custom-value-1,my-custom-header-2",
|
"my-custom-header": "my-custom-value-1,my-custom-header-2",
|
||||||
|
"my-custom-regex-header-1": "my-custom-regex-value-1,my-custom-regex-value-2",
|
||||||
|
"My-Custom-Regex-Header-2": "my-custom-regex-value-3,my-custom-regex-value-4",
|
||||||
|
"my-secret-header": "my-secret-value",
|
||||||
"dont-capture-me": "test-value",
|
"dont-capture-me": "test-value",
|
||||||
}
|
}
|
||||||
return Response("Testing", headers=headers)
|
return Response("Testing", headers=headers)
|
||||||
|
@ -28,6 +28,7 @@ from opentelemetry.test.wsgitestutil import WsgiTestBase
|
|||||||
from opentelemetry.trace import SpanKind
|
from opentelemetry.trace import SpanKind
|
||||||
from opentelemetry.trace.status import StatusCode
|
from opentelemetry.trace.status import StatusCode
|
||||||
from opentelemetry.util.http import (
|
from opentelemetry.util.http import (
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SANITIZE_FIELDS,
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST,
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST,
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE,
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE,
|
||||||
_active_requests_count_attrs,
|
_active_requests_count_attrs,
|
||||||
@ -285,24 +286,23 @@ class TestWrappedWithOtherFramework(InstrumentationTest, WsgiTestBase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@patch.dict(
|
||||||
|
"os.environ",
|
||||||
|
{
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SANITIZE_FIELDS: ".*my-secret.*",
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST: "Custom-Test-Header-1,Custom-Test-Header-2,invalid-header,Regex-Test-Header-.*,Regex-Invalid-Test-Header-.*,.*my-secret.*",
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE: "content-type,content-length,my-custom-header,invalid-header,my-custom-regex-header-.*,invalid-regex-header-.*,.*my-secret.*",
|
||||||
|
},
|
||||||
|
)
|
||||||
class TestCustomRequestResponseHeaders(InstrumentationTest, WsgiTestBase):
|
class TestCustomRequestResponseHeaders(InstrumentationTest, WsgiTestBase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
super().setUp()
|
super().setUp()
|
||||||
PyramidInstrumentor().instrument()
|
PyramidInstrumentor().instrument()
|
||||||
self.config = Configurator()
|
self.config = Configurator()
|
||||||
self._common_initialization(self.config)
|
self._common_initialization(self.config)
|
||||||
self.env_patch = patch.dict(
|
|
||||||
"os.environ",
|
|
||||||
{
|
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST: "Custom-Test-Header-1,Custom-Test-Header-2,invalid-header",
|
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE: "content-type,content-length,my-custom-header,invalid-header",
|
|
||||||
},
|
|
||||||
)
|
|
||||||
self.env_patch.start()
|
|
||||||
|
|
||||||
def tearDown(self) -> None:
|
def tearDown(self) -> None:
|
||||||
super().tearDown()
|
super().tearDown()
|
||||||
self.env_patch.stop()
|
|
||||||
with self.disable_logging():
|
with self.disable_logging():
|
||||||
PyramidInstrumentor().uninstrument()
|
PyramidInstrumentor().uninstrument()
|
||||||
|
|
||||||
@ -311,6 +311,9 @@ class TestCustomRequestResponseHeaders(InstrumentationTest, WsgiTestBase):
|
|||||||
"Custom-Test-Header-1": "Test Value 1",
|
"Custom-Test-Header-1": "Test Value 1",
|
||||||
"Custom-Test-Header-2": "TestValue2,TestValue3",
|
"Custom-Test-Header-2": "TestValue2,TestValue3",
|
||||||
"Custom-Test-Header-3": "TestValue4",
|
"Custom-Test-Header-3": "TestValue4",
|
||||||
|
"Regex-Test-Header-1": "Regex Test Value 1",
|
||||||
|
"regex-test-header-2": "RegexTestValue2,RegexTestValue3",
|
||||||
|
"My-Secret-Header": "My Secret Value",
|
||||||
}
|
}
|
||||||
resp = self.client.get("/hello/123", headers=headers)
|
resp = self.client.get("/hello/123", headers=headers)
|
||||||
self.assertEqual(200, resp.status_code)
|
self.assertEqual(200, resp.status_code)
|
||||||
@ -320,6 +323,11 @@ class TestCustomRequestResponseHeaders(InstrumentationTest, WsgiTestBase):
|
|||||||
"http.request.header.custom_test_header_2": (
|
"http.request.header.custom_test_header_2": (
|
||||||
"TestValue2,TestValue3",
|
"TestValue2,TestValue3",
|
||||||
),
|
),
|
||||||
|
"http.request.header.regex_test_header_1": ("Regex Test Value 1",),
|
||||||
|
"http.request.header.regex_test_header_2": (
|
||||||
|
"RegexTestValue2,RegexTestValue3",
|
||||||
|
),
|
||||||
|
"http.request.header.my_secret_header": ("[REDACTED]",),
|
||||||
}
|
}
|
||||||
not_expected = {
|
not_expected = {
|
||||||
"http.request.header.custom_test_header_3": ("TestValue4",),
|
"http.request.header.custom_test_header_3": ("TestValue4",),
|
||||||
@ -361,6 +369,13 @@ class TestCustomRequestResponseHeaders(InstrumentationTest, WsgiTestBase):
|
|||||||
"http.response.header.my_custom_header": (
|
"http.response.header.my_custom_header": (
|
||||||
"my-custom-value-1,my-custom-header-2",
|
"my-custom-value-1,my-custom-header-2",
|
||||||
),
|
),
|
||||||
|
"http.response.header.my_custom_regex_header_1": (
|
||||||
|
"my-custom-regex-value-1,my-custom-regex-value-2",
|
||||||
|
),
|
||||||
|
"http.response.header.my_custom_regex_header_2": (
|
||||||
|
"my-custom-regex-value-3,my-custom-regex-value-4",
|
||||||
|
),
|
||||||
|
"http.response.header.my_secret_header": ("[REDACTED]",),
|
||||||
}
|
}
|
||||||
not_expected = {
|
not_expected = {
|
||||||
"http.response.header.dont_capture_me": ("test-value",)
|
"http.response.header.dont_capture_me": ("test-value",)
|
||||||
@ -390,6 +405,14 @@ class TestCustomRequestResponseHeaders(InstrumentationTest, WsgiTestBase):
|
|||||||
self.assertNotIn(key, span.attributes)
|
self.assertNotIn(key, span.attributes)
|
||||||
|
|
||||||
|
|
||||||
|
@patch.dict(
|
||||||
|
"os.environ",
|
||||||
|
{
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SANITIZE_FIELDS: ".*my-secret.*",
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST: "Custom-Test-Header-1,Custom-Test-Header-2,invalid-header,Regex-Test-Header-.*,Regex-Invalid-Test-Header-.*,.*my-secret.*",
|
||||||
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE: "content-type,content-length,my-custom-header,invalid-header,my-custom-regex-header-.*,invalid-regex-header-.*,.*my-secret.*",
|
||||||
|
},
|
||||||
|
)
|
||||||
class TestCustomHeadersNonRecordingSpan(InstrumentationTest, WsgiTestBase):
|
class TestCustomHeadersNonRecordingSpan(InstrumentationTest, WsgiTestBase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
super().setUp()
|
super().setUp()
|
||||||
@ -401,18 +424,9 @@ class TestCustomHeadersNonRecordingSpan(InstrumentationTest, WsgiTestBase):
|
|||||||
PyramidInstrumentor().instrument()
|
PyramidInstrumentor().instrument()
|
||||||
self.config = Configurator()
|
self.config = Configurator()
|
||||||
self._common_initialization(self.config)
|
self._common_initialization(self.config)
|
||||||
self.env_patch = patch.dict(
|
|
||||||
"os.environ",
|
|
||||||
{
|
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST: "Custom-Test-Header-1,Custom-Test-Header-2,invalid-header",
|
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE: "content-type,content-length,my-custom-header,invalid-header",
|
|
||||||
},
|
|
||||||
)
|
|
||||||
self.env_patch.start()
|
|
||||||
|
|
||||||
def tearDown(self) -> None:
|
def tearDown(self) -> None:
|
||||||
super().tearDown()
|
super().tearDown()
|
||||||
self.env_patch.stop()
|
|
||||||
with self.disable_logging():
|
with self.disable_logging():
|
||||||
PyramidInstrumentor().uninstrument()
|
PyramidInstrumentor().uninstrument()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user