opentelemetry-instrumentation-tornado 0.43b0__tar.gz → 0.45b0__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.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/PKG-INFO +6 -11
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/pyproject.toml +4 -10
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/src/opentelemetry/instrumentation/tornado/__init__.py +1 -1
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/src/opentelemetry/instrumentation/tornado/version.py +1 -1
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/tests/test_instrumentation.py +1 -1
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/.gitignore +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/LICENSE +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/README.rst +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/src/opentelemetry/instrumentation/tornado/client.py +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/src/opentelemetry/instrumentation/tornado/package.py +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/tests/__init__.py +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/tests/test_metrics_instrumentation.py +0 -0
- {opentelemetry_instrumentation_tornado-0.43b0 → opentelemetry_instrumentation_tornado-0.45b0}/tests/tornado_test_app.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: opentelemetry-instrumentation-tornado
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.45b0
|
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
|
Author-email: OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io>
|
@@ -10,22 +10,17 @@ Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
12
12
|
Classifier: Programming Language :: Python
|
13
|
-
Classifier: Programming Language :: Python :: 3.7
|
14
13
|
Classifier: Programming Language :: Python :: 3.8
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
17
16
|
Classifier: Programming Language :: Python :: 3.11
|
18
|
-
Requires-Python: >=3.
|
17
|
+
Requires-Python: >=3.8
|
19
18
|
Requires-Dist: opentelemetry-api~=1.12
|
20
|
-
Requires-Dist: opentelemetry-instrumentation==0.
|
21
|
-
Requires-Dist: opentelemetry-semantic-conventions==0.
|
22
|
-
Requires-Dist: opentelemetry-util-http==0.
|
19
|
+
Requires-Dist: opentelemetry-instrumentation==0.45b0
|
20
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.45b0
|
21
|
+
Requires-Dist: opentelemetry-util-http==0.45b0
|
23
22
|
Provides-Extra: instruments
|
24
23
|
Requires-Dist: tornado>=5.1.1; extra == 'instruments'
|
25
|
-
Provides-Extra: test
|
26
|
-
Requires-Dist: http-server-mock; extra == 'test'
|
27
|
-
Requires-Dist: opentelemetry-instrumentation-tornado[instruments]; extra == 'test'
|
28
|
-
Requires-Dist: opentelemetry-test-utils==0.43b0; extra == 'test'
|
29
24
|
Description-Content-Type: text/x-rst
|
30
25
|
|
31
26
|
OpenTelemetry Tornado Instrumentation
|
@@ -8,7 +8,7 @@ dynamic = ["version"]
|
|
8
8
|
description = "Tornado instrumentation for OpenTelemetry"
|
9
9
|
readme = "README.rst"
|
10
10
|
license = "Apache-2.0"
|
11
|
-
requires-python = ">=3.
|
11
|
+
requires-python = ">=3.8"
|
12
12
|
authors = [
|
13
13
|
{ name = "OpenTelemetry Authors", email = "cncf-opentelemetry-contributors@lists.cncf.io" },
|
14
14
|
]
|
@@ -17,7 +17,6 @@ classifiers = [
|
|
17
17
|
"Intended Audience :: Developers",
|
18
18
|
"License :: OSI Approved :: Apache Software License",
|
19
19
|
"Programming Language :: Python",
|
20
|
-
"Programming Language :: Python :: 3.7",
|
21
20
|
"Programming Language :: Python :: 3.8",
|
22
21
|
"Programming Language :: Python :: 3.9",
|
23
22
|
"Programming Language :: Python :: 3.10",
|
@@ -25,20 +24,15 @@ classifiers = [
|
|
25
24
|
]
|
26
25
|
dependencies = [
|
27
26
|
"opentelemetry-api ~= 1.12",
|
28
|
-
"opentelemetry-instrumentation == 0.
|
29
|
-
"opentelemetry-semantic-conventions == 0.
|
30
|
-
"opentelemetry-util-http == 0.
|
27
|
+
"opentelemetry-instrumentation == 0.45b0",
|
28
|
+
"opentelemetry-semantic-conventions == 0.45b0",
|
29
|
+
"opentelemetry-util-http == 0.45b0",
|
31
30
|
]
|
32
31
|
|
33
32
|
[project.optional-dependencies]
|
34
33
|
instruments = [
|
35
34
|
"tornado >= 5.1.1",
|
36
35
|
]
|
37
|
-
test = [
|
38
|
-
"opentelemetry-instrumentation-tornado[instruments]",
|
39
|
-
"opentelemetry-test-utils == 0.43b0",
|
40
|
-
"http-server-mock"
|
41
|
-
]
|
42
36
|
|
43
37
|
[project.entry-points.opentelemetry_instrumentor]
|
44
38
|
tornado = "opentelemetry.instrumentation.tornado:TornadoInstrumentor"
|
@@ -296,7 +296,7 @@ def _create_server_histograms(meter) -> Dict[str, Histogram]:
|
|
296
296
|
MetricInstruments.HTTP_SERVER_DURATION: meter.create_histogram(
|
297
297
|
name=MetricInstruments.HTTP_SERVER_DURATION,
|
298
298
|
unit="ms",
|
299
|
-
description="
|
299
|
+
description="Duration of HTTP client requests.",
|
300
300
|
),
|
301
301
|
MetricInstruments.HTTP_SERVER_REQUEST_SIZE: meter.create_histogram(
|
302
302
|
name=MetricInstruments.HTTP_SERVER_REQUEST_SIZE,
|
@@ -528,7 +528,7 @@ class TestTornadoInstrumentation(TornadoTest, WsgiTestBase):
|
|
528
528
|
|
529
529
|
|
530
530
|
class TestTornadoInstrumentationWithXHeaders(TornadoTest):
|
531
|
-
def get_httpserver_options(self):
|
531
|
+
def get_httpserver_options(self): # pylint: disable=no-self-use
|
532
532
|
return {"xheaders": True}
|
533
533
|
|
534
534
|
def test_xheaders(self):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|