opentelemetry-instrumentation-aiohttp-client 0.50b0__py3-none-any.whl → 0.51b0__py3-none-any.whl
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/aiohttp_client/__init__.py +4 -4
- opentelemetry/instrumentation/aiohttp_client/version.py +1 -1
- {opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info → opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info}/METADATA +9 -6
- opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info/RECORD +8 -0
- {opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info → opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info}/WHEEL +1 -1
- opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info/RECORD +0 -8
- {opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info → opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info}/entry_points.txt +0 -0
- {opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info → opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info}/licenses/LICENSE +0 -0
@@ -92,13 +92,13 @@ from opentelemetry import context as context_api
|
|
92
92
|
from opentelemetry import trace
|
93
93
|
from opentelemetry.instrumentation._semconv import (
|
94
94
|
_get_schema_url,
|
95
|
-
_HTTPStabilityMode,
|
96
95
|
_OpenTelemetrySemanticConventionStability,
|
97
96
|
_OpenTelemetryStabilitySignalType,
|
98
97
|
_report_new,
|
99
98
|
_set_http_method,
|
100
99
|
_set_http_url,
|
101
100
|
_set_status,
|
101
|
+
_StabilityMode,
|
102
102
|
)
|
103
103
|
from opentelemetry.instrumentation.aiohttp_client.package import _instruments
|
104
104
|
from opentelemetry.instrumentation.aiohttp_client.version import __version__
|
@@ -142,7 +142,7 @@ def _set_http_status_code_attribute(
|
|
142
142
|
span,
|
143
143
|
status_code,
|
144
144
|
metric_attributes=None,
|
145
|
-
sem_conv_opt_in_mode=
|
145
|
+
sem_conv_opt_in_mode=_StabilityMode.DEFAULT,
|
146
146
|
):
|
147
147
|
status_code_str = str(status_code)
|
148
148
|
try:
|
@@ -169,7 +169,7 @@ def create_trace_config(
|
|
169
169
|
request_hook: _RequestHookT = None,
|
170
170
|
response_hook: _ResponseHookT = None,
|
171
171
|
tracer_provider: TracerProvider = None,
|
172
|
-
sem_conv_opt_in_mode:
|
172
|
+
sem_conv_opt_in_mode: _StabilityMode = _StabilityMode.DEFAULT,
|
173
173
|
) -> aiohttp.TraceConfig:
|
174
174
|
"""Create an aiohttp-compatible trace configuration.
|
175
175
|
|
@@ -326,7 +326,7 @@ def _instrument(
|
|
326
326
|
trace_configs: typing.Optional[
|
327
327
|
typing.Sequence[aiohttp.TraceConfig]
|
328
328
|
] = None,
|
329
|
-
sem_conv_opt_in_mode:
|
329
|
+
sem_conv_opt_in_mode: _StabilityMode = _StabilityMode.DEFAULT,
|
330
330
|
):
|
331
331
|
"""Enables tracing of all ClientSessions
|
332
332
|
|
@@ -1,10 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: opentelemetry-instrumentation-aiohttp-client
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.51b0
|
4
4
|
Summary: OpenTelemetry aiohttp client instrumentation
|
5
5
|
Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiohttp-client
|
6
|
+
Project-URL: Repository, https://github.com/open-telemetry/opentelemetry-python-contrib
|
6
7
|
Author-email: OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io>
|
7
|
-
License: Apache-2.0
|
8
|
+
License-Expression: Apache-2.0
|
9
|
+
License-File: LICENSE
|
8
10
|
Classifier: Development Status :: 4 - Beta
|
9
11
|
Classifier: Intended Audience :: Developers
|
10
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
@@ -15,11 +17,12 @@ Classifier: Programming Language :: Python :: 3.9
|
|
15
17
|
Classifier: Programming Language :: Python :: 3.10
|
16
18
|
Classifier: Programming Language :: Python :: 3.11
|
17
19
|
Classifier: Programming Language :: Python :: 3.12
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
18
21
|
Requires-Python: >=3.8
|
19
22
|
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.
|
23
|
+
Requires-Dist: opentelemetry-instrumentation==0.51b0
|
24
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.51b0
|
25
|
+
Requires-Dist: opentelemetry-util-http==0.51b0
|
23
26
|
Requires-Dist: wrapt<2.0.0,>=1.0.0
|
24
27
|
Provides-Extra: instruments
|
25
28
|
Requires-Dist: aiohttp~=3.0; extra == 'instruments'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
opentelemetry/instrumentation/aiohttp_client/__init__.py,sha256=0uu3wOTF15LF09EuxKCymkiSNhDK7pIkGIHi26yQWMM,14270
|
2
|
+
opentelemetry/instrumentation/aiohttp_client/package.py,sha256=sNviXDOZG31-3USpt9VVWNqT8kAiIKaxtq-wi1k8WBM,681
|
3
|
+
opentelemetry/instrumentation/aiohttp_client/version.py,sha256=8ixipa_8e1JftkeJRegVTDdGci5QIy0EaQ7u0mJ6YOk,610
|
4
|
+
opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info/METADATA,sha256=7-GyIZRHdeMSa7gshFks52N6PHgoCsDYNmoXAWh6cr4,2217
|
5
|
+
opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
6
|
+
opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info/entry_points.txt,sha256=RyZ5eVO-u3V_rwvLrhMM0ABs_WYZDqcagmMKwDPtmwE,117
|
7
|
+
opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
8
|
+
opentelemetry_instrumentation_aiohttp_client-0.51b0.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
opentelemetry/instrumentation/aiohttp_client/__init__.py,sha256=l3EfkPyCLBDBd8bwC9jXuK4FYhzBZPV3j33gGKm5o4I,14294
|
2
|
-
opentelemetry/instrumentation/aiohttp_client/package.py,sha256=sNviXDOZG31-3USpt9VVWNqT8kAiIKaxtq-wi1k8WBM,681
|
3
|
-
opentelemetry/instrumentation/aiohttp_client/version.py,sha256=iHUTxI2YL1TgSonSihvVzf6E5_Pphg6lWlPlzkyQwc4,610
|
4
|
-
opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info/METADATA,sha256=Ymaob7VcV85rrfCMepFepHliIGALo1fQFbp3soeDtSU,2045
|
5
|
-
opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
6
|
-
opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info/entry_points.txt,sha256=RyZ5eVO-u3V_rwvLrhMM0ABs_WYZDqcagmMKwDPtmwE,117
|
7
|
-
opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
8
|
-
opentelemetry_instrumentation_aiohttp_client-0.50b0.dist-info/RECORD,,
|
File without changes
|