opentelemetry-instrumentation-tornado 0.53b1__tar.gz → 0.54b1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/PKG-INFO +4 -4
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/pyproject.toml +3 -3
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/src/opentelemetry/instrumentation/tornado/__init__.py +3 -1
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/src/opentelemetry/instrumentation/tornado/version.py +1 -1
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/.gitignore +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/LICENSE +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/README.rst +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/src/opentelemetry/instrumentation/tornado/client.py +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/src/opentelemetry/instrumentation/tornado/package.py +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/tests/__init__.py +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/tests/test_instrumentation.py +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/tests/test_metrics_instrumentation.py +0 -0
- {opentelemetry_instrumentation_tornado-0.53b1 → opentelemetry_instrumentation_tornado-0.54b1}/tests/tornado_test_app.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: opentelemetry-instrumentation-tornado
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.54b1
|
4
4
|
Summary: Tornado instrumentation for OpenTelemetry
|
5
5
|
Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tornado
|
6
6
|
Project-URL: Repository, https://github.com/open-telemetry/opentelemetry-python-contrib
|
@@ -19,9 +19,9 @@ Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
20
20
|
Requires-Python: >=3.8
|
21
21
|
Requires-Dist: opentelemetry-api~=1.12
|
22
|
-
Requires-Dist: opentelemetry-instrumentation==0.
|
23
|
-
Requires-Dist: opentelemetry-semantic-conventions==0.
|
24
|
-
Requires-Dist: opentelemetry-util-http==0.
|
22
|
+
Requires-Dist: opentelemetry-instrumentation==0.54b1
|
23
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.54b1
|
24
|
+
Requires-Dist: opentelemetry-util-http==0.54b1
|
25
25
|
Provides-Extra: instruments
|
26
26
|
Requires-Dist: tornado>=5.1.1; extra == 'instruments'
|
27
27
|
Description-Content-Type: text/x-rst
|
@@ -26,9 +26,9 @@ classifiers = [
|
|
26
26
|
]
|
27
27
|
dependencies = [
|
28
28
|
"opentelemetry-api ~= 1.12",
|
29
|
-
"opentelemetry-instrumentation == 0.
|
30
|
-
"opentelemetry-semantic-conventions == 0.
|
31
|
-
"opentelemetry-util-http == 0.
|
29
|
+
"opentelemetry-instrumentation == 0.54b1",
|
30
|
+
"opentelemetry-semantic-conventions == 0.54b1",
|
31
|
+
"opentelemetry-util-http == 0.54b1",
|
32
32
|
]
|
33
33
|
|
34
34
|
[project.optional-dependencies]
|
@@ -72,6 +72,8 @@ created span and some other contextual information. Example:
|
|
72
72
|
|
73
73
|
.. code-block:: python
|
74
74
|
|
75
|
+
from opentelemetry.instrumentation.tornado import TornadoInstrumentor
|
76
|
+
|
75
77
|
# will be called for each incoming request to Tornado
|
76
78
|
# web server. `handler` is an instance of
|
77
79
|
# `tornado.web.RequestHandler`.
|
@@ -94,7 +96,7 @@ created span and some other contextual information. Example:
|
|
94
96
|
TornadoInstrumentor().instrument(
|
95
97
|
server_request_hook=server_request_hook,
|
96
98
|
client_request_hook=client_request_hook,
|
97
|
-
client_response_hook=client_response_hook
|
99
|
+
client_response_hook=client_response_hook,
|
98
100
|
)
|
99
101
|
|
100
102
|
Capture HTTP request and response headers
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|