opentelemetry-instrumentation 0.46b0__py3-none-any.whl → 0.48b0__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/_semconv.py +121 -97
- opentelemetry/instrumentation/bootstrap.py +1 -1
- opentelemetry/instrumentation/bootstrap_gen.py +55 -56
- opentelemetry/instrumentation/utils.py +11 -4
- opentelemetry/instrumentation/version.py +1 -1
- {opentelemetry_instrumentation-0.46b0.dist-info → opentelemetry_instrumentation-0.48b0.dist-info}/METADATA +2 -1
- {opentelemetry_instrumentation-0.46b0.dist-info → opentelemetry_instrumentation-0.48b0.dist-info}/RECORD +10 -10
- {opentelemetry_instrumentation-0.46b0.dist-info → opentelemetry_instrumentation-0.48b0.dist-info}/WHEEL +1 -1
- {opentelemetry_instrumentation-0.46b0.dist-info → opentelemetry_instrumentation-0.48b0.dist-info}/entry_points.txt +0 -0
- {opentelemetry_instrumentation-0.46b0.dist-info → opentelemetry_instrumentation-0.48b0.dist-info}/licenses/LICENSE +0 -0
@@ -17,15 +17,37 @@ import threading
|
|
17
17
|
from enum import Enum
|
18
18
|
|
19
19
|
from opentelemetry.instrumentation.utils import http_status_to_status_code
|
20
|
+
from opentelemetry.semconv.attributes.client_attributes import (
|
21
|
+
CLIENT_ADDRESS,
|
22
|
+
CLIENT_PORT,
|
23
|
+
)
|
24
|
+
from opentelemetry.semconv.attributes.error_attributes import ERROR_TYPE
|
25
|
+
from opentelemetry.semconv.attributes.http_attributes import (
|
26
|
+
HTTP_REQUEST_METHOD,
|
27
|
+
HTTP_REQUEST_METHOD_ORIGINAL,
|
28
|
+
HTTP_RESPONSE_STATUS_CODE,
|
29
|
+
HTTP_ROUTE,
|
30
|
+
)
|
31
|
+
from opentelemetry.semconv.attributes.network_attributes import (
|
32
|
+
NETWORK_PROTOCOL_VERSION,
|
33
|
+
)
|
34
|
+
from opentelemetry.semconv.attributes.server_attributes import (
|
35
|
+
SERVER_ADDRESS,
|
36
|
+
SERVER_PORT,
|
37
|
+
)
|
38
|
+
from opentelemetry.semconv.attributes.url_attributes import (
|
39
|
+
URL_FULL,
|
40
|
+
URL_PATH,
|
41
|
+
URL_QUERY,
|
42
|
+
URL_SCHEME,
|
43
|
+
)
|
44
|
+
from opentelemetry.semconv.attributes.user_agent_attributes import (
|
45
|
+
USER_AGENT_ORIGINAL,
|
46
|
+
)
|
20
47
|
from opentelemetry.semconv.trace import SpanAttributes
|
21
48
|
from opentelemetry.trace.status import Status, StatusCode
|
22
49
|
|
23
|
-
#
|
24
|
-
_SPAN_ATTRIBUTES_ERROR_TYPE = "error.type"
|
25
|
-
_SPAN_ATTRIBUTES_NETWORK_PEER_ADDRESS = "network.peer.address"
|
26
|
-
_SPAN_ATTRIBUTES_NETWORK_PEER_PORT = "network.peer.port"
|
27
|
-
_METRIC_ATTRIBUTES_CLIENT_DURATION_NAME = "http.client.request.duration"
|
28
|
-
_METRIC_ATTRIBUTES_SERVER_DURATION_NAME = "http.server.request.duration"
|
50
|
+
# These lists represent attributes for metrics that are currently supported
|
29
51
|
|
30
52
|
_client_duration_attrs_old = [
|
31
53
|
SpanAttributes.HTTP_STATUS_CODE,
|
@@ -38,14 +60,14 @@ _client_duration_attrs_old = [
|
|
38
60
|
]
|
39
61
|
|
40
62
|
_client_duration_attrs_new = [
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
63
|
+
ERROR_TYPE,
|
64
|
+
HTTP_REQUEST_METHOD,
|
65
|
+
HTTP_RESPONSE_STATUS_CODE,
|
66
|
+
NETWORK_PROTOCOL_VERSION,
|
67
|
+
SERVER_ADDRESS,
|
68
|
+
SERVER_PORT,
|
47
69
|
# TODO: Support opt-in for scheme in new semconv
|
48
|
-
#
|
70
|
+
# URL_SCHEME,
|
49
71
|
]
|
50
72
|
|
51
73
|
_server_duration_attrs_old = [
|
@@ -60,12 +82,12 @@ _server_duration_attrs_old = [
|
|
60
82
|
]
|
61
83
|
|
62
84
|
_server_duration_attrs_new = [
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
85
|
+
ERROR_TYPE,
|
86
|
+
HTTP_REQUEST_METHOD,
|
87
|
+
HTTP_RESPONSE_STATUS_CODE,
|
88
|
+
HTTP_ROUTE,
|
89
|
+
NETWORK_PROTOCOL_VERSION,
|
90
|
+
URL_SCHEME,
|
69
91
|
]
|
70
92
|
|
71
93
|
_server_active_requests_count_attrs_old = [
|
@@ -74,13 +96,12 @@ _server_active_requests_count_attrs_old = [
|
|
74
96
|
SpanAttributes.HTTP_SCHEME,
|
75
97
|
SpanAttributes.HTTP_FLAVOR,
|
76
98
|
SpanAttributes.HTTP_SERVER_NAME,
|
77
|
-
SpanAttributes.NET_HOST_NAME,
|
78
|
-
SpanAttributes.NET_HOST_PORT,
|
79
99
|
]
|
80
100
|
|
81
101
|
_server_active_requests_count_attrs_new = [
|
82
|
-
|
83
|
-
|
102
|
+
HTTP_REQUEST_METHOD,
|
103
|
+
URL_SCHEME,
|
104
|
+
# TODO: Support SERVER_ADDRESS AND SERVER_PORT
|
84
105
|
]
|
85
106
|
|
86
107
|
OTEL_SEMCONV_STABILITY_OPT_IN = "OTEL_SEMCONV_STABILITY_OPT_IN"
|
@@ -202,72 +223,80 @@ def _set_http_method(result, original, normalized, sem_conv_opt_in_mode):
|
|
202
223
|
# See https://github.com/open-telemetry/semantic-conventions/blob/main/docs/http/http-spans.md#common-attributes
|
203
224
|
# Method is case sensitive. "http.request.method_original" should not be sanitized or automatically capitalized.
|
204
225
|
if original != normalized and _report_new(sem_conv_opt_in_mode):
|
205
|
-
set_string_attribute(
|
206
|
-
result, SpanAttributes.HTTP_REQUEST_METHOD_ORIGINAL, original
|
207
|
-
)
|
226
|
+
set_string_attribute(result, HTTP_REQUEST_METHOD_ORIGINAL, original)
|
208
227
|
|
209
228
|
if _report_old(sem_conv_opt_in_mode):
|
210
229
|
set_string_attribute(result, SpanAttributes.HTTP_METHOD, normalized)
|
211
230
|
if _report_new(sem_conv_opt_in_mode):
|
212
|
-
set_string_attribute(
|
213
|
-
result, SpanAttributes.HTTP_REQUEST_METHOD, normalized
|
214
|
-
)
|
231
|
+
set_string_attribute(result, HTTP_REQUEST_METHOD, normalized)
|
215
232
|
|
216
233
|
|
217
234
|
def _set_http_status_code(result, code, sem_conv_opt_in_mode):
|
218
235
|
if _report_old(sem_conv_opt_in_mode):
|
219
236
|
set_int_attribute(result, SpanAttributes.HTTP_STATUS_CODE, code)
|
220
237
|
if _report_new(sem_conv_opt_in_mode):
|
221
|
-
set_int_attribute(
|
222
|
-
result, SpanAttributes.HTTP_RESPONSE_STATUS_CODE, code
|
223
|
-
)
|
238
|
+
set_int_attribute(result, HTTP_RESPONSE_STATUS_CODE, code)
|
224
239
|
|
225
240
|
|
226
241
|
def _set_http_url(result, url, sem_conv_opt_in_mode):
|
227
242
|
if _report_old(sem_conv_opt_in_mode):
|
228
243
|
set_string_attribute(result, SpanAttributes.HTTP_URL, url)
|
229
244
|
if _report_new(sem_conv_opt_in_mode):
|
230
|
-
set_string_attribute(result,
|
245
|
+
set_string_attribute(result, URL_FULL, url)
|
231
246
|
|
232
247
|
|
233
248
|
def _set_http_scheme(result, scheme, sem_conv_opt_in_mode):
|
234
249
|
if _report_old(sem_conv_opt_in_mode):
|
235
250
|
set_string_attribute(result, SpanAttributes.HTTP_SCHEME, scheme)
|
236
251
|
if _report_new(sem_conv_opt_in_mode):
|
237
|
-
set_string_attribute(result,
|
252
|
+
set_string_attribute(result, URL_SCHEME, scheme)
|
238
253
|
|
239
254
|
|
240
|
-
def
|
255
|
+
def _set_http_flavor_version(result, version, sem_conv_opt_in_mode):
|
241
256
|
if _report_old(sem_conv_opt_in_mode):
|
242
|
-
set_string_attribute(result, SpanAttributes.
|
257
|
+
set_string_attribute(result, SpanAttributes.HTTP_FLAVOR, version)
|
243
258
|
if _report_new(sem_conv_opt_in_mode):
|
244
|
-
set_string_attribute(result,
|
259
|
+
set_string_attribute(result, NETWORK_PROTOCOL_VERSION, version)
|
260
|
+
|
261
|
+
|
262
|
+
def _set_http_user_agent(result, user_agent, sem_conv_opt_in_mode):
|
263
|
+
if _report_old(sem_conv_opt_in_mode):
|
264
|
+
set_string_attribute(
|
265
|
+
result, SpanAttributes.HTTP_USER_AGENT, user_agent
|
266
|
+
)
|
267
|
+
if _report_new(sem_conv_opt_in_mode):
|
268
|
+
set_string_attribute(result, USER_AGENT_ORIGINAL, user_agent)
|
245
269
|
|
246
270
|
|
247
271
|
# Client
|
248
272
|
|
249
273
|
|
274
|
+
def _set_http_host_client(result, host, sem_conv_opt_in_mode):
|
275
|
+
if _report_old(sem_conv_opt_in_mode):
|
276
|
+
set_string_attribute(result, SpanAttributes.HTTP_HOST, host)
|
277
|
+
if _report_new(sem_conv_opt_in_mode):
|
278
|
+
set_string_attribute(result, SERVER_ADDRESS, host)
|
279
|
+
|
280
|
+
|
250
281
|
def _set_http_net_peer_name_client(result, peer_name, sem_conv_opt_in_mode):
|
251
282
|
if _report_old(sem_conv_opt_in_mode):
|
252
283
|
set_string_attribute(result, SpanAttributes.NET_PEER_NAME, peer_name)
|
253
284
|
if _report_new(sem_conv_opt_in_mode):
|
254
|
-
set_string_attribute(result,
|
285
|
+
set_string_attribute(result, SERVER_ADDRESS, peer_name)
|
255
286
|
|
256
287
|
|
257
288
|
def _set_http_peer_port_client(result, port, sem_conv_opt_in_mode):
|
258
289
|
if _report_old(sem_conv_opt_in_mode):
|
259
290
|
set_int_attribute(result, SpanAttributes.NET_PEER_PORT, port)
|
260
291
|
if _report_new(sem_conv_opt_in_mode):
|
261
|
-
set_int_attribute(result,
|
292
|
+
set_int_attribute(result, SERVER_PORT, port)
|
262
293
|
|
263
294
|
|
264
295
|
def _set_http_network_protocol_version(result, version, sem_conv_opt_in_mode):
|
265
296
|
if _report_old(sem_conv_opt_in_mode):
|
266
297
|
set_string_attribute(result, SpanAttributes.HTTP_FLAVOR, version)
|
267
298
|
if _report_new(sem_conv_opt_in_mode):
|
268
|
-
set_string_attribute(
|
269
|
-
result, SpanAttributes.NETWORK_PROTOCOL_VERSION, version
|
270
|
-
)
|
299
|
+
set_string_attribute(result, NETWORK_PROTOCOL_VERSION, version)
|
271
300
|
|
272
301
|
|
273
302
|
# Server
|
@@ -277,14 +306,14 @@ def _set_http_net_host(result, host, sem_conv_opt_in_mode):
|
|
277
306
|
if _report_old(sem_conv_opt_in_mode):
|
278
307
|
set_string_attribute(result, SpanAttributes.NET_HOST_NAME, host)
|
279
308
|
if _report_new(sem_conv_opt_in_mode):
|
280
|
-
set_string_attribute(result,
|
309
|
+
set_string_attribute(result, SERVER_ADDRESS, host)
|
281
310
|
|
282
311
|
|
283
312
|
def _set_http_net_host_port(result, port, sem_conv_opt_in_mode):
|
284
313
|
if _report_old(sem_conv_opt_in_mode):
|
285
314
|
set_int_attribute(result, SpanAttributes.NET_HOST_PORT, port)
|
286
315
|
if _report_new(sem_conv_opt_in_mode):
|
287
|
-
set_int_attribute(result,
|
316
|
+
set_int_attribute(result, SERVER_PORT, port)
|
288
317
|
|
289
318
|
|
290
319
|
def _set_http_target(result, target, path, query, sem_conv_opt_in_mode):
|
@@ -292,91 +321,86 @@ def _set_http_target(result, target, path, query, sem_conv_opt_in_mode):
|
|
292
321
|
set_string_attribute(result, SpanAttributes.HTTP_TARGET, target)
|
293
322
|
if _report_new(sem_conv_opt_in_mode):
|
294
323
|
if path:
|
295
|
-
set_string_attribute(result,
|
324
|
+
set_string_attribute(result, URL_PATH, path)
|
296
325
|
if query:
|
297
|
-
set_string_attribute(result,
|
326
|
+
set_string_attribute(result, URL_QUERY, query)
|
298
327
|
|
299
328
|
|
300
|
-
def
|
329
|
+
def _set_http_host_server(result, host, sem_conv_opt_in_mode):
|
301
330
|
if _report_old(sem_conv_opt_in_mode):
|
302
|
-
set_string_attribute(result, SpanAttributes.
|
331
|
+
set_string_attribute(result, SpanAttributes.HTTP_HOST, host)
|
303
332
|
if _report_new(sem_conv_opt_in_mode):
|
304
|
-
set_string_attribute(result,
|
333
|
+
set_string_attribute(result, CLIENT_ADDRESS, host)
|
305
334
|
|
306
335
|
|
307
|
-
|
336
|
+
# net.peer.ip -> net.sock.peer.addr
|
337
|
+
# https://github.com/open-telemetry/semantic-conventions/blob/40db676ca0e735aa84f242b5a0fb14e49438b69b/schemas/1.15.0#L18
|
338
|
+
# net.sock.peer.addr -> client.socket.address for server spans (TODO) AND client.address if missing
|
339
|
+
# https://github.com/open-telemetry/semantic-conventions/blob/v1.21.0/CHANGELOG.md#v1210-2023-07-13
|
340
|
+
# https://github.com/open-telemetry/semantic-conventions/blob/main/docs/non-normative/http-migration.md#common-attributes-across-http-client-and-server-spans
|
341
|
+
def _set_http_peer_ip_server(result, ip, sem_conv_opt_in_mode):
|
308
342
|
if _report_old(sem_conv_opt_in_mode):
|
309
|
-
|
343
|
+
set_string_attribute(result, SpanAttributes.NET_PEER_IP, ip)
|
310
344
|
if _report_new(sem_conv_opt_in_mode):
|
311
|
-
|
345
|
+
# Only populate if not already populated
|
346
|
+
if not result.get(CLIENT_ADDRESS):
|
347
|
+
set_string_attribute(result, CLIENT_ADDRESS, ip)
|
312
348
|
|
313
349
|
|
314
|
-
def
|
350
|
+
def _set_http_peer_port_server(result, port, sem_conv_opt_in_mode):
|
315
351
|
if _report_old(sem_conv_opt_in_mode):
|
316
|
-
|
317
|
-
result, SpanAttributes.HTTP_USER_AGENT, user_agent
|
318
|
-
)
|
352
|
+
set_int_attribute(result, SpanAttributes.NET_PEER_PORT, port)
|
319
353
|
if _report_new(sem_conv_opt_in_mode):
|
320
|
-
|
321
|
-
result, SpanAttributes.USER_AGENT_ORIGINAL, user_agent
|
322
|
-
)
|
354
|
+
set_int_attribute(result, CLIENT_PORT, port)
|
323
355
|
|
324
356
|
|
325
357
|
def _set_http_net_peer_name_server(result, name, sem_conv_opt_in_mode):
|
326
358
|
if _report_old(sem_conv_opt_in_mode):
|
327
359
|
set_string_attribute(result, SpanAttributes.NET_PEER_NAME, name)
|
328
360
|
if _report_new(sem_conv_opt_in_mode):
|
329
|
-
set_string_attribute(result,
|
330
|
-
|
331
|
-
|
332
|
-
def _set_http_flavor_version(result, version, sem_conv_opt_in_mode):
|
333
|
-
if _report_old(sem_conv_opt_in_mode):
|
334
|
-
set_string_attribute(result, SpanAttributes.HTTP_FLAVOR, version)
|
335
|
-
if _report_new(sem_conv_opt_in_mode):
|
336
|
-
set_string_attribute(
|
337
|
-
result, SpanAttributes.NETWORK_PROTOCOL_VERSION, version
|
338
|
-
)
|
361
|
+
set_string_attribute(result, CLIENT_ADDRESS, name)
|
339
362
|
|
340
363
|
|
341
364
|
def _set_status(
|
342
365
|
span,
|
343
|
-
metrics_attributes,
|
344
|
-
|
345
|
-
|
346
|
-
|
366
|
+
metrics_attributes: dict,
|
367
|
+
status_code: int,
|
368
|
+
status_code_str: str,
|
369
|
+
server_span: bool = True,
|
370
|
+
sem_conv_opt_in_mode: _HTTPStabilityMode = _HTTPStabilityMode.DEFAULT,
|
347
371
|
):
|
348
372
|
if status_code < 0:
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
373
|
+
metrics_attributes[ERROR_TYPE] = status_code_str
|
374
|
+
if span.is_recording():
|
375
|
+
if _report_new(sem_conv_opt_in_mode):
|
376
|
+
span.set_attribute(ERROR_TYPE, status_code_str)
|
377
|
+
span.set_status(
|
378
|
+
Status(
|
379
|
+
StatusCode.ERROR,
|
380
|
+
"Non-integer HTTP status: " + status_code_str,
|
381
|
+
)
|
357
382
|
)
|
358
|
-
)
|
359
383
|
else:
|
360
|
-
status = http_status_to_status_code(
|
384
|
+
status = http_status_to_status_code(
|
385
|
+
status_code, server_span=server_span
|
386
|
+
)
|
361
387
|
|
362
388
|
if _report_old(sem_conv_opt_in_mode):
|
363
|
-
span.
|
389
|
+
if span.is_recording():
|
390
|
+
span.set_attribute(
|
391
|
+
SpanAttributes.HTTP_STATUS_CODE, status_code
|
392
|
+
)
|
364
393
|
metrics_attributes[SpanAttributes.HTTP_STATUS_CODE] = status_code
|
365
394
|
if _report_new(sem_conv_opt_in_mode):
|
366
|
-
span.
|
367
|
-
|
368
|
-
|
369
|
-
metrics_attributes[SpanAttributes.HTTP_RESPONSE_STATUS_CODE] = (
|
370
|
-
status_code
|
371
|
-
)
|
395
|
+
if span.is_recording():
|
396
|
+
span.set_attribute(HTTP_RESPONSE_STATUS_CODE, status_code)
|
397
|
+
metrics_attributes[HTTP_RESPONSE_STATUS_CODE] = status_code
|
372
398
|
if status == StatusCode.ERROR:
|
373
|
-
span.
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
)
|
379
|
-
span.set_status(Status(status))
|
399
|
+
if span.is_recording():
|
400
|
+
span.set_attribute(ERROR_TYPE, status_code_str)
|
401
|
+
metrics_attributes[ERROR_TYPE] = status_code_str
|
402
|
+
if span.is_recording():
|
403
|
+
span.set_status(Status(status))
|
380
404
|
|
381
405
|
|
382
406
|
# Get schema version based off of opt-in mode
|
@@ -18,180 +18,179 @@
|
|
18
18
|
libraries = [
|
19
19
|
{
|
20
20
|
"library": "aio_pika >= 7.2.0, < 10.0.0",
|
21
|
-
"instrumentation": "opentelemetry-instrumentation-aio-pika==0.
|
21
|
+
"instrumentation": "opentelemetry-instrumentation-aio-pika==0.48b0",
|
22
22
|
},
|
23
23
|
{
|
24
24
|
"library": "aiohttp ~= 3.0",
|
25
|
-
"instrumentation": "opentelemetry-instrumentation-aiohttp-client==0.
|
25
|
+
"instrumentation": "opentelemetry-instrumentation-aiohttp-client==0.48b0",
|
26
26
|
},
|
27
27
|
{
|
28
28
|
"library": "aiohttp ~= 3.0",
|
29
|
-
"instrumentation": "opentelemetry-instrumentation-aiohttp-server==0.
|
29
|
+
"instrumentation": "opentelemetry-instrumentation-aiohttp-server==0.48b0",
|
30
30
|
},
|
31
31
|
{
|
32
32
|
"library": "aiopg >= 0.13.0, < 2.0.0",
|
33
|
-
"instrumentation": "opentelemetry-instrumentation-aiopg==0.
|
33
|
+
"instrumentation": "opentelemetry-instrumentation-aiopg==0.48b0",
|
34
34
|
},
|
35
35
|
{
|
36
36
|
"library": "asgiref ~= 3.0",
|
37
|
-
"instrumentation": "opentelemetry-instrumentation-asgi==0.
|
37
|
+
"instrumentation": "opentelemetry-instrumentation-asgi==0.48b0",
|
38
38
|
},
|
39
39
|
{
|
40
40
|
"library": "asyncpg >= 0.12.0",
|
41
|
-
"instrumentation": "opentelemetry-instrumentation-asyncpg==0.
|
41
|
+
"instrumentation": "opentelemetry-instrumentation-asyncpg==0.48b0",
|
42
42
|
},
|
43
43
|
{
|
44
44
|
"library": "boto~=2.0",
|
45
|
-
"instrumentation": "opentelemetry-instrumentation-boto==0.
|
45
|
+
"instrumentation": "opentelemetry-instrumentation-boto==0.48b0",
|
46
46
|
},
|
47
47
|
{
|
48
48
|
"library": "boto3 ~= 1.0",
|
49
|
-
"instrumentation": "opentelemetry-instrumentation-boto3sqs==0.
|
49
|
+
"instrumentation": "opentelemetry-instrumentation-boto3sqs==0.48b0",
|
50
50
|
},
|
51
51
|
{
|
52
52
|
"library": "botocore ~= 1.0",
|
53
|
-
"instrumentation": "opentelemetry-instrumentation-botocore==0.
|
53
|
+
"instrumentation": "opentelemetry-instrumentation-botocore==0.48b0",
|
54
54
|
},
|
55
55
|
{
|
56
56
|
"library": "cassandra-driver ~= 3.25",
|
57
|
-
"instrumentation": "opentelemetry-instrumentation-cassandra==0.
|
57
|
+
"instrumentation": "opentelemetry-instrumentation-cassandra==0.48b0",
|
58
58
|
},
|
59
59
|
{
|
60
60
|
"library": "scylla-driver ~= 3.25",
|
61
|
-
"instrumentation": "opentelemetry-instrumentation-cassandra==0.
|
61
|
+
"instrumentation": "opentelemetry-instrumentation-cassandra==0.48b0",
|
62
62
|
},
|
63
63
|
{
|
64
64
|
"library": "celery >= 4.0, < 6.0",
|
65
|
-
"instrumentation": "opentelemetry-instrumentation-celery==0.
|
65
|
+
"instrumentation": "opentelemetry-instrumentation-celery==0.48b0",
|
66
66
|
},
|
67
67
|
{
|
68
|
-
"library": "confluent-kafka >= 1.8.2, <= 2.
|
69
|
-
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.
|
68
|
+
"library": "confluent-kafka >= 1.8.2, <= 2.4.0",
|
69
|
+
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.48b0",
|
70
70
|
},
|
71
71
|
{
|
72
72
|
"library": "django >= 1.10",
|
73
|
-
"instrumentation": "opentelemetry-instrumentation-django==0.
|
73
|
+
"instrumentation": "opentelemetry-instrumentation-django==0.48b0",
|
74
74
|
},
|
75
75
|
{
|
76
76
|
"library": "elasticsearch >= 6.0",
|
77
|
-
"instrumentation": "opentelemetry-instrumentation-elasticsearch==0.
|
77
|
+
"instrumentation": "opentelemetry-instrumentation-elasticsearch==0.48b0",
|
78
78
|
},
|
79
79
|
{
|
80
80
|
"library": "falcon >= 1.4.1, < 3.1.2",
|
81
|
-
"instrumentation": "opentelemetry-instrumentation-falcon==0.
|
81
|
+
"instrumentation": "opentelemetry-instrumentation-falcon==0.48b0",
|
82
82
|
},
|
83
83
|
{
|
84
84
|
"library": "fastapi ~= 0.58",
|
85
|
-
"instrumentation": "opentelemetry-instrumentation-fastapi==0.
|
85
|
+
"instrumentation": "opentelemetry-instrumentation-fastapi==0.48b0",
|
86
86
|
},
|
87
87
|
{
|
88
88
|
"library": "flask >= 1.0",
|
89
|
-
"instrumentation": "opentelemetry-instrumentation-flask==0.
|
89
|
+
"instrumentation": "opentelemetry-instrumentation-flask==0.48b0",
|
90
90
|
},
|
91
91
|
{
|
92
92
|
"library": "grpcio ~= 1.27",
|
93
|
-
"instrumentation": "opentelemetry-instrumentation-grpc==0.
|
93
|
+
"instrumentation": "opentelemetry-instrumentation-grpc==0.48b0",
|
94
94
|
},
|
95
95
|
{
|
96
96
|
"library": "httpx >= 0.18.0",
|
97
|
-
"instrumentation": "opentelemetry-instrumentation-httpx==0.
|
97
|
+
"instrumentation": "opentelemetry-instrumentation-httpx==0.48b0",
|
98
98
|
},
|
99
99
|
{
|
100
100
|
"library": "jinja2 >= 2.7, < 4.0",
|
101
|
-
"instrumentation": "opentelemetry-instrumentation-jinja2==0.
|
101
|
+
"instrumentation": "opentelemetry-instrumentation-jinja2==0.48b0",
|
102
102
|
},
|
103
103
|
{
|
104
|
-
"library": "kafka-python >= 2.0",
|
105
|
-
"instrumentation": "opentelemetry-instrumentation-kafka-python==0.
|
104
|
+
"library": "kafka-python >= 2.0, < 3.0",
|
105
|
+
"instrumentation": "opentelemetry-instrumentation-kafka-python==0.48b0",
|
106
106
|
},
|
107
107
|
{
|
108
|
-
"library": "
|
109
|
-
"instrumentation": "opentelemetry-instrumentation-
|
108
|
+
"library": "kafka-python-ng >= 2.0, < 3.0",
|
109
|
+
"instrumentation": "opentelemetry-instrumentation-kafka-python==0.48b0",
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"library": "mysql-connector-python >= 8.0, < 10.0",
|
113
|
+
"instrumentation": "opentelemetry-instrumentation-mysql==0.48b0",
|
110
114
|
},
|
111
115
|
{
|
112
116
|
"library": "mysqlclient < 3",
|
113
|
-
"instrumentation": "opentelemetry-instrumentation-mysqlclient==0.
|
117
|
+
"instrumentation": "opentelemetry-instrumentation-mysqlclient==0.48b0",
|
114
118
|
},
|
115
119
|
{
|
116
120
|
"library": "pika >= 0.12.0",
|
117
|
-
"instrumentation": "opentelemetry-instrumentation-pika==0.
|
121
|
+
"instrumentation": "opentelemetry-instrumentation-pika==0.48b0",
|
118
122
|
},
|
119
123
|
{
|
120
124
|
"library": "psycopg >= 3.1.0",
|
121
|
-
"instrumentation": "opentelemetry-instrumentation-psycopg==0.
|
125
|
+
"instrumentation": "opentelemetry-instrumentation-psycopg==0.48b0",
|
122
126
|
},
|
123
127
|
{
|
124
128
|
"library": "psycopg2 >= 2.7.3.1",
|
125
|
-
"instrumentation": "opentelemetry-instrumentation-psycopg2==0.
|
129
|
+
"instrumentation": "opentelemetry-instrumentation-psycopg2==0.48b0",
|
126
130
|
},
|
127
131
|
{
|
128
132
|
"library": "pymemcache >= 1.3.5, < 5",
|
129
|
-
"instrumentation": "opentelemetry-instrumentation-pymemcache==0.
|
133
|
+
"instrumentation": "opentelemetry-instrumentation-pymemcache==0.48b0",
|
130
134
|
},
|
131
135
|
{
|
132
136
|
"library": "pymongo >= 3.1, < 5.0",
|
133
|
-
"instrumentation": "opentelemetry-instrumentation-pymongo==0.
|
137
|
+
"instrumentation": "opentelemetry-instrumentation-pymongo==0.48b0",
|
134
138
|
},
|
135
139
|
{
|
136
140
|
"library": "PyMySQL < 2",
|
137
|
-
"instrumentation": "opentelemetry-instrumentation-pymysql==0.
|
141
|
+
"instrumentation": "opentelemetry-instrumentation-pymysql==0.48b0",
|
138
142
|
},
|
139
143
|
{
|
140
144
|
"library": "pyramid >= 1.7",
|
141
|
-
"instrumentation": "opentelemetry-instrumentation-pyramid==0.
|
145
|
+
"instrumentation": "opentelemetry-instrumentation-pyramid==0.48b0",
|
142
146
|
},
|
143
147
|
{
|
144
148
|
"library": "redis >= 2.6",
|
145
|
-
"instrumentation": "opentelemetry-instrumentation-redis==0.
|
149
|
+
"instrumentation": "opentelemetry-instrumentation-redis==0.48b0",
|
146
150
|
},
|
147
151
|
{
|
148
152
|
"library": "remoulade >= 0.50",
|
149
|
-
"instrumentation": "opentelemetry-instrumentation-remoulade==0.
|
153
|
+
"instrumentation": "opentelemetry-instrumentation-remoulade==0.48b0",
|
150
154
|
},
|
151
155
|
{
|
152
156
|
"library": "requests ~= 2.0",
|
153
|
-
"instrumentation": "opentelemetry-instrumentation-requests==0.
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"library": "scikit-learn ~= 0.24.0",
|
157
|
-
"instrumentation": "opentelemetry-instrumentation-sklearn==0.46b0",
|
157
|
+
"instrumentation": "opentelemetry-instrumentation-requests==0.48b0",
|
158
158
|
},
|
159
159
|
{
|
160
160
|
"library": "sqlalchemy",
|
161
|
-
"instrumentation": "opentelemetry-instrumentation-sqlalchemy==0.
|
161
|
+
"instrumentation": "opentelemetry-instrumentation-sqlalchemy==0.48b0",
|
162
162
|
},
|
163
163
|
{
|
164
164
|
"library": "starlette ~= 0.13.0",
|
165
|
-
"instrumentation": "opentelemetry-instrumentation-starlette==0.
|
165
|
+
"instrumentation": "opentelemetry-instrumentation-starlette==0.48b0",
|
166
166
|
},
|
167
167
|
{
|
168
168
|
"library": "psutil >= 5",
|
169
|
-
"instrumentation": "opentelemetry-instrumentation-system-metrics==0.
|
169
|
+
"instrumentation": "opentelemetry-instrumentation-system-metrics==0.48b0",
|
170
170
|
},
|
171
171
|
{
|
172
172
|
"library": "tornado >= 5.1.1",
|
173
|
-
"instrumentation": "opentelemetry-instrumentation-tornado==0.
|
173
|
+
"instrumentation": "opentelemetry-instrumentation-tornado==0.48b0",
|
174
174
|
},
|
175
175
|
{
|
176
176
|
"library": "tortoise-orm >= 0.17.0",
|
177
|
-
"instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.
|
177
|
+
"instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.48b0",
|
178
178
|
},
|
179
179
|
{
|
180
180
|
"library": "pydantic >= 1.10.2",
|
181
|
-
"instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.
|
181
|
+
"instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.48b0",
|
182
182
|
},
|
183
183
|
{
|
184
184
|
"library": "urllib3 >= 1.0.0, < 3.0.0",
|
185
|
-
"instrumentation": "opentelemetry-instrumentation-urllib3==0.
|
185
|
+
"instrumentation": "opentelemetry-instrumentation-urllib3==0.48b0",
|
186
186
|
},
|
187
187
|
]
|
188
188
|
default_instrumentations = [
|
189
|
-
"opentelemetry-instrumentation-asyncio==0.
|
190
|
-
"opentelemetry-instrumentation-
|
191
|
-
"opentelemetry-instrumentation-
|
192
|
-
"opentelemetry-instrumentation-
|
193
|
-
"opentelemetry-instrumentation-
|
194
|
-
"opentelemetry-instrumentation-
|
195
|
-
"opentelemetry-instrumentation-
|
196
|
-
"opentelemetry-instrumentation-wsgi==0.46b0",
|
189
|
+
"opentelemetry-instrumentation-asyncio==0.48b0",
|
190
|
+
"opentelemetry-instrumentation-dbapi==0.48b0",
|
191
|
+
"opentelemetry-instrumentation-logging==0.48b0",
|
192
|
+
"opentelemetry-instrumentation-sqlite3==0.48b0",
|
193
|
+
"opentelemetry-instrumentation-threading==0.48b0",
|
194
|
+
"opentelemetry-instrumentation-urllib==0.48b0",
|
195
|
+
"opentelemetry-instrumentation-wsgi==0.48b0",
|
197
196
|
]
|
@@ -37,6 +37,10 @@ from opentelemetry.trace.propagation.tracecontext import (
|
|
37
37
|
|
38
38
|
propagator = TraceContextTextMapPropagator()
|
39
39
|
|
40
|
+
_SUPPRESS_INSTRUMENTATION_KEY_PLAIN = (
|
41
|
+
"suppress_instrumentation" # Set for backward compatibility
|
42
|
+
)
|
43
|
+
|
40
44
|
|
41
45
|
def extract_attributes_from_object(
|
42
46
|
obj: any, attributes: Sequence[str], existing: Dict[str, str] = None
|
@@ -161,9 +165,10 @@ def _python_path_without_directory(python_path, directory, path_separator):
|
|
161
165
|
|
162
166
|
|
163
167
|
def is_instrumentation_enabled() -> bool:
|
164
|
-
|
165
|
-
|
166
|
-
|
168
|
+
return not (
|
169
|
+
context.get_value(_SUPPRESS_INSTRUMENTATION_KEY)
|
170
|
+
or context.get_value(_SUPPRESS_INSTRUMENTATION_KEY_PLAIN)
|
171
|
+
)
|
167
172
|
|
168
173
|
|
169
174
|
def is_http_instrumentation_enabled() -> bool:
|
@@ -188,7 +193,9 @@ def _suppress_instrumentation(*keys: str) -> Iterable[None]:
|
|
188
193
|
@contextmanager
|
189
194
|
def suppress_instrumentation() -> Iterable[None]:
|
190
195
|
"""Suppress instrumentation within the context."""
|
191
|
-
with _suppress_instrumentation(
|
196
|
+
with _suppress_instrumentation(
|
197
|
+
_SUPPRESS_INSTRUMENTATION_KEY, _SUPPRESS_INSTRUMENTATION_KEY_PLAIN
|
198
|
+
):
|
192
199
|
yield
|
193
200
|
|
194
201
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: opentelemetry-instrumentation
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.48b0
|
4
4
|
Summary: Instrumentation Tools & Auto Instrumentation for OpenTelemetry Python
|
5
5
|
Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/opentelemetry-instrumentation
|
6
6
|
Author-email: OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io>
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
18
19
|
Requires-Python: >=3.8
|
19
20
|
Requires-Dist: opentelemetry-api~=1.4
|
20
21
|
Requires-Dist: setuptools>=16.0
|
@@ -1,6 +1,6 @@
|
|
1
|
-
opentelemetry/instrumentation/_semconv.py,sha256=
|
2
|
-
opentelemetry/instrumentation/bootstrap.py,sha256=
|
3
|
-
opentelemetry/instrumentation/bootstrap_gen.py,sha256=
|
1
|
+
opentelemetry/instrumentation/_semconv.py,sha256=eX7jtDvnLjCogil0SRZ4q_ftKWyJRNKiOkiuDRNVzgA,14582
|
2
|
+
opentelemetry/instrumentation/bootstrap.py,sha256=tbzlcj04Fhn9r_vmYlq_fBGAidqjMZ9aCqRmyQi9tqk,4717
|
3
|
+
opentelemetry/instrumentation/bootstrap_gen.py,sha256=ju8ofIRxJFxmTxNSMvbJXenILiW0apRU8eXY1eG8Jv0,6674
|
4
4
|
opentelemetry/instrumentation/dependencies.py,sha256=ljJ0nMK_vNZXOiCTLOT1nM3xpwmx7LVaW_S53jcRvIY,1798
|
5
5
|
opentelemetry/instrumentation/distro.py,sha256=vCvt0pHLtL3OF1m7MVyPUkK4UfoZN6-Vj7JCc6XLbwc,2145
|
6
6
|
opentelemetry/instrumentation/environment_variables.py,sha256=oRcbNSSbnqJMQ3r4gBhK6jqtuI5WizapP962Z8DrVZ8,905
|
@@ -8,13 +8,13 @@ opentelemetry/instrumentation/instrumentor.py,sha256=0r527qBsl-fPAVXPM3iu_k94omL
|
|
8
8
|
opentelemetry/instrumentation/propagators.py,sha256=hBkG70KlMUiTjxPeiyOhkb_eE96DRVzRyY4fEIzMqD4,4070
|
9
9
|
opentelemetry/instrumentation/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
opentelemetry/instrumentation/sqlcommenter_utils.py,sha256=yV_-hcwy_3ckP76_FC2dOrd8IKi9z_9s980ZMuGYkrE,1960
|
11
|
-
opentelemetry/instrumentation/utils.py,sha256=
|
12
|
-
opentelemetry/instrumentation/version.py,sha256=
|
11
|
+
opentelemetry/instrumentation/utils.py,sha256=5j6HYS00vpf5EeNHHYIpys1TZn9V-hnM6Hj2qQdPRG4,6339
|
12
|
+
opentelemetry/instrumentation/version.py,sha256=wOX_9uGRBIlLks98mTGJZnnmD1Zez4rGVQNmP23fWEc,608
|
13
13
|
opentelemetry/instrumentation/auto_instrumentation/__init__.py,sha256=en-gz8Qg6JlGR6XnFF0TYBElVUGMGNo3FtnB0GBJfA0,3780
|
14
14
|
opentelemetry/instrumentation/auto_instrumentation/_load.py,sha256=RDFVxFJ2NR02i8_MFc2FJFxRQjsvjX8f1H2N7ZMF5V0,4794
|
15
15
|
opentelemetry/instrumentation/auto_instrumentation/sitecustomize.py,sha256=p3cz9NlKNlnzxc7guFSPyztx8XMUteAxkN1NFYXSH-0,1449
|
16
|
-
opentelemetry_instrumentation-0.
|
17
|
-
opentelemetry_instrumentation-0.
|
18
|
-
opentelemetry_instrumentation-0.
|
19
|
-
opentelemetry_instrumentation-0.
|
20
|
-
opentelemetry_instrumentation-0.
|
16
|
+
opentelemetry_instrumentation-0.48b0.dist-info/METADATA,sha256=XH1LxyA_jKzRZCs9HrOeYIs1hVSPpEfZgHvlOdXCfbU,6115
|
17
|
+
opentelemetry_instrumentation-0.48b0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
18
|
+
opentelemetry_instrumentation-0.48b0.dist-info/entry_points.txt,sha256=iVv3t5REB0O58tFUEQQXYLrTCa1VVOFUXfrbvUk6_aU,279
|
19
|
+
opentelemetry_instrumentation-0.48b0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
20
|
+
opentelemetry_instrumentation-0.48b0.dist-info/RECORD,,
|
File without changes
|
File without changes
|