opentelemetry-instrumentation 0.49b0__tar.gz → 0.49b1__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.
Files changed (29) hide show
  1. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/PKG-INFO +2 -2
  2. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/pyproject.toml +1 -1
  3. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/bootstrap_gen.py +51 -52
  4. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/version.py +1 -1
  5. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/.gitignore +0 -0
  6. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/LICENSE +0 -0
  7. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/README.rst +0 -0
  8. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/_semconv.py +0 -0
  9. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/auto_instrumentation/__init__.py +0 -0
  10. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/auto_instrumentation/_load.py +0 -0
  11. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/auto_instrumentation/sitecustomize.py +0 -0
  12. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/bootstrap.py +0 -0
  13. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/dependencies.py +0 -0
  14. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/distro.py +0 -0
  15. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/environment_variables.py +0 -0
  16. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/instrumentor.py +0 -0
  17. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/propagators.py +0 -0
  18. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/py.typed +0 -0
  19. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/sqlcommenter_utils.py +0 -0
  20. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/src/opentelemetry/instrumentation/utils.py +0 -0
  21. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/__init__.py +0 -0
  22. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/auto_instrumentation/test_load.py +0 -0
  23. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/auto_instrumentation/test_run.py +0 -0
  24. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/test_bootstrap.py +0 -0
  25. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/test_dependencies.py +0 -0
  26. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/test_distro.py +0 -0
  27. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/test_instrumentor.py +0 -0
  28. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/test_propagators.py +0 -0
  29. {opentelemetry_instrumentation-0.49b0 → opentelemetry_instrumentation-0.49b1}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: opentelemetry-instrumentation
3
- Version: 0.49b0
3
+ Version: 0.49b1
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>
@@ -18,7 +18,7 @@ Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
19
  Requires-Python: >=3.8
20
20
  Requires-Dist: opentelemetry-api~=1.4
21
- Requires-Dist: opentelemetry-semantic-conventions==0.49b0
21
+ Requires-Dist: opentelemetry-semantic-conventions==0.49b1
22
22
  Requires-Dist: packaging>=18.0
23
23
  Requires-Dist: wrapt<2.0.0,>=1.0.0
24
24
  Description-Content-Type: text/x-rst
@@ -26,7 +26,7 @@ classifiers = [
26
26
  ]
27
27
  dependencies = [
28
28
  "opentelemetry-api ~= 1.4",
29
- "opentelemetry-semantic-conventions == 0.49b0",
29
+ "opentelemetry-semantic-conventions == 0.49b1",
30
30
  "wrapt >= 1.0.0, < 2.0.0",
31
31
  "packaging >= 18.0",
32
32
  ]
@@ -18,184 +18,183 @@
18
18
  libraries = [
19
19
  {
20
20
  "library": "aio_pika >= 7.2.0, < 10.0.0",
21
- "instrumentation": "opentelemetry-instrumentation-aio-pika==0.49b0",
21
+ "instrumentation": "opentelemetry-instrumentation-aio-pika==0.49b1",
22
22
  },
23
23
  {
24
24
  "library": "aiohttp ~= 3.0",
25
- "instrumentation": "opentelemetry-instrumentation-aiohttp-client==0.49b0",
25
+ "instrumentation": "opentelemetry-instrumentation-aiohttp-client==0.49b1",
26
26
  },
27
27
  {
28
28
  "library": "aiohttp ~= 3.0",
29
- "instrumentation": "opentelemetry-instrumentation-aiohttp-server==0.49b0",
29
+ "instrumentation": "opentelemetry-instrumentation-aiohttp-server==0.49b1",
30
30
  },
31
31
  {
32
32
  "library": "aiokafka >= 0.8, < 1.0",
33
- "instrumentation": "opentelemetry-instrumentation-aiokafka==0.49b0",
33
+ "instrumentation": "opentelemetry-instrumentation-aiokafka==0.49b1",
34
34
  },
35
35
  {
36
36
  "library": "aiopg >= 0.13.0, < 2.0.0",
37
- "instrumentation": "opentelemetry-instrumentation-aiopg==0.49b0",
37
+ "instrumentation": "opentelemetry-instrumentation-aiopg==0.49b1",
38
38
  },
39
39
  {
40
40
  "library": "asgiref ~= 3.0",
41
- "instrumentation": "opentelemetry-instrumentation-asgi==0.49b0",
41
+ "instrumentation": "opentelemetry-instrumentation-asgi==0.49b1",
42
42
  },
43
43
  {
44
44
  "library": "asyncpg >= 0.12.0",
45
- "instrumentation": "opentelemetry-instrumentation-asyncpg==0.49b0",
45
+ "instrumentation": "opentelemetry-instrumentation-asyncpg==0.49b1",
46
46
  },
47
47
  {
48
48
  "library": "boto~=2.0",
49
- "instrumentation": "opentelemetry-instrumentation-boto==0.49b0",
49
+ "instrumentation": "opentelemetry-instrumentation-boto==0.49b1",
50
50
  },
51
51
  {
52
52
  "library": "boto3 ~= 1.0",
53
- "instrumentation": "opentelemetry-instrumentation-boto3sqs==0.49b0",
53
+ "instrumentation": "opentelemetry-instrumentation-boto3sqs==0.49b1",
54
54
  },
55
55
  {
56
56
  "library": "botocore ~= 1.0",
57
- "instrumentation": "opentelemetry-instrumentation-botocore==0.49b0",
57
+ "instrumentation": "opentelemetry-instrumentation-botocore==0.49b1",
58
58
  },
59
59
  {
60
60
  "library": "cassandra-driver ~= 3.25",
61
- "instrumentation": "opentelemetry-instrumentation-cassandra==0.49b0",
61
+ "instrumentation": "opentelemetry-instrumentation-cassandra==0.49b1",
62
62
  },
63
63
  {
64
64
  "library": "scylla-driver ~= 3.25",
65
- "instrumentation": "opentelemetry-instrumentation-cassandra==0.49b0",
65
+ "instrumentation": "opentelemetry-instrumentation-cassandra==0.49b1",
66
66
  },
67
67
  {
68
68
  "library": "celery >= 4.0, < 6.0",
69
- "instrumentation": "opentelemetry-instrumentation-celery==0.49b0",
69
+ "instrumentation": "opentelemetry-instrumentation-celery==0.49b1",
70
70
  },
71
71
  {
72
72
  "library": "confluent-kafka >= 1.8.2, <= 2.4.0",
73
- "instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.49b0",
73
+ "instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.49b1",
74
74
  },
75
75
  {
76
76
  "library": "django >= 1.10",
77
- "instrumentation": "opentelemetry-instrumentation-django==0.49b0",
77
+ "instrumentation": "opentelemetry-instrumentation-django==0.49b1",
78
78
  },
79
79
  {
80
80
  "library": "elasticsearch >= 6.0",
81
- "instrumentation": "opentelemetry-instrumentation-elasticsearch==0.49b0",
81
+ "instrumentation": "opentelemetry-instrumentation-elasticsearch==0.49b1",
82
82
  },
83
83
  {
84
84
  "library": "falcon >= 1.4.1, < 3.1.2",
85
- "instrumentation": "opentelemetry-instrumentation-falcon==0.49b0",
85
+ "instrumentation": "opentelemetry-instrumentation-falcon==0.49b1",
86
86
  },
87
87
  {
88
88
  "library": "fastapi ~= 0.58",
89
- "instrumentation": "opentelemetry-instrumentation-fastapi==0.49b0",
89
+ "instrumentation": "opentelemetry-instrumentation-fastapi==0.49b1",
90
90
  },
91
91
  {
92
92
  "library": "flask >= 1.0",
93
- "instrumentation": "opentelemetry-instrumentation-flask==0.49b0",
93
+ "instrumentation": "opentelemetry-instrumentation-flask==0.49b1",
94
94
  },
95
95
  {
96
96
  "library": "grpcio >= 1.42.0",
97
- "instrumentation": "opentelemetry-instrumentation-grpc==0.49b0",
97
+ "instrumentation": "opentelemetry-instrumentation-grpc==0.49b1",
98
98
  },
99
99
  {
100
100
  "library": "httpx >= 0.18.0",
101
- "instrumentation": "opentelemetry-instrumentation-httpx==0.49b0",
101
+ "instrumentation": "opentelemetry-instrumentation-httpx==0.49b1",
102
102
  },
103
103
  {
104
104
  "library": "jinja2 >= 2.7, < 4.0",
105
- "instrumentation": "opentelemetry-instrumentation-jinja2==0.49b0",
105
+ "instrumentation": "opentelemetry-instrumentation-jinja2==0.49b1",
106
106
  },
107
107
  {
108
108
  "library": "kafka-python >= 2.0, < 3.0",
109
- "instrumentation": "opentelemetry-instrumentation-kafka-python==0.49b0",
109
+ "instrumentation": "opentelemetry-instrumentation-kafka-python==0.49b1",
110
110
  },
111
111
  {
112
112
  "library": "kafka-python-ng >= 2.0, < 3.0",
113
- "instrumentation": "opentelemetry-instrumentation-kafka-python==0.49b0",
113
+ "instrumentation": "opentelemetry-instrumentation-kafka-python==0.49b1",
114
114
  },
115
115
  {
116
116
  "library": "mysql-connector-python >= 8.0, < 10.0",
117
- "instrumentation": "opentelemetry-instrumentation-mysql==0.49b0",
117
+ "instrumentation": "opentelemetry-instrumentation-mysql==0.49b1",
118
118
  },
119
119
  {
120
120
  "library": "mysqlclient < 3",
121
- "instrumentation": "opentelemetry-instrumentation-mysqlclient==0.49b0",
121
+ "instrumentation": "opentelemetry-instrumentation-mysqlclient==0.49b1",
122
122
  },
123
123
  {
124
124
  "library": "pika >= 0.12.0",
125
- "instrumentation": "opentelemetry-instrumentation-pika==0.49b0",
125
+ "instrumentation": "opentelemetry-instrumentation-pika==0.49b1",
126
126
  },
127
127
  {
128
128
  "library": "psycopg >= 3.1.0",
129
- "instrumentation": "opentelemetry-instrumentation-psycopg==0.49b0",
129
+ "instrumentation": "opentelemetry-instrumentation-psycopg==0.49b1",
130
130
  },
131
131
  {
132
132
  "library": "psycopg2 >= 2.7.3.1",
133
- "instrumentation": "opentelemetry-instrumentation-psycopg2==0.49b0",
133
+ "instrumentation": "opentelemetry-instrumentation-psycopg2==0.49b1",
134
134
  },
135
135
  {
136
136
  "library": "pymemcache >= 1.3.5, < 5",
137
- "instrumentation": "opentelemetry-instrumentation-pymemcache==0.49b0",
137
+ "instrumentation": "opentelemetry-instrumentation-pymemcache==0.49b1",
138
138
  },
139
139
  {
140
140
  "library": "pymongo >= 3.1, < 5.0",
141
- "instrumentation": "opentelemetry-instrumentation-pymongo==0.49b0",
141
+ "instrumentation": "opentelemetry-instrumentation-pymongo==0.49b1",
142
142
  },
143
143
  {
144
144
  "library": "PyMySQL < 2",
145
- "instrumentation": "opentelemetry-instrumentation-pymysql==0.49b0",
145
+ "instrumentation": "opentelemetry-instrumentation-pymysql==0.49b1",
146
146
  },
147
147
  {
148
148
  "library": "pyramid >= 1.7",
149
- "instrumentation": "opentelemetry-instrumentation-pyramid==0.49b0",
149
+ "instrumentation": "opentelemetry-instrumentation-pyramid==0.49b1",
150
150
  },
151
151
  {
152
152
  "library": "redis >= 2.6",
153
- "instrumentation": "opentelemetry-instrumentation-redis==0.49b0",
153
+ "instrumentation": "opentelemetry-instrumentation-redis==0.49b1",
154
154
  },
155
155
  {
156
156
  "library": "remoulade >= 0.50",
157
- "instrumentation": "opentelemetry-instrumentation-remoulade==0.49b0",
157
+ "instrumentation": "opentelemetry-instrumentation-remoulade==0.49b1",
158
158
  },
159
159
  {
160
160
  "library": "requests ~= 2.0",
161
- "instrumentation": "opentelemetry-instrumentation-requests==0.49b0",
161
+ "instrumentation": "opentelemetry-instrumentation-requests==0.49b1",
162
162
  },
163
163
  {
164
- "library": "sqlalchemy",
165
- "instrumentation": "opentelemetry-instrumentation-sqlalchemy==0.49b0",
164
+ "library": "sqlalchemy >= 1.0.0, < 2.1.0",
165
+ "instrumentation": "opentelemetry-instrumentation-sqlalchemy==0.49b1",
166
166
  },
167
167
  {
168
168
  "library": "starlette ~= 0.13.0",
169
- "instrumentation": "opentelemetry-instrumentation-starlette==0.49b0",
169
+ "instrumentation": "opentelemetry-instrumentation-starlette==0.49b1",
170
170
  },
171
171
  {
172
172
  "library": "psutil >= 5",
173
- "instrumentation": "opentelemetry-instrumentation-system-metrics==0.49b0",
173
+ "instrumentation": "opentelemetry-instrumentation-system-metrics==0.49b1",
174
174
  },
175
175
  {
176
176
  "library": "tornado >= 5.1.1",
177
- "instrumentation": "opentelemetry-instrumentation-tornado==0.49b0",
177
+ "instrumentation": "opentelemetry-instrumentation-tornado==0.49b1",
178
178
  },
179
179
  {
180
180
  "library": "tortoise-orm >= 0.17.0",
181
- "instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.49b0",
181
+ "instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.49b1",
182
182
  },
183
183
  {
184
184
  "library": "pydantic >= 1.10.2",
185
- "instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.49b0",
185
+ "instrumentation": "opentelemetry-instrumentation-tortoiseorm==0.49b1",
186
186
  },
187
187
  {
188
188
  "library": "urllib3 >= 1.0.0, < 3.0.0",
189
- "instrumentation": "opentelemetry-instrumentation-urllib3==0.49b0",
189
+ "instrumentation": "opentelemetry-instrumentation-urllib3==0.49b1",
190
190
  },
191
191
  ]
192
192
  default_instrumentations = [
193
- "opentelemetry-instrumentation-asyncio==0.49b0",
194
- "opentelemetry-instrumentation-dbapi==0.49b0",
195
- "opentelemetry-instrumentation-logging==0.49b0",
196
- "opentelemetry-instrumentation-sqlite3==0.49b0",
197
- "opentelemetry-instrumentation-test==1.0.0b.dev",
198
- "opentelemetry-instrumentation-threading==0.49b0",
199
- "opentelemetry-instrumentation-urllib==0.49b0",
200
- "opentelemetry-instrumentation-wsgi==0.49b0",
193
+ "opentelemetry-instrumentation-asyncio==0.49b1",
194
+ "opentelemetry-instrumentation-dbapi==0.49b1",
195
+ "opentelemetry-instrumentation-logging==0.49b1",
196
+ "opentelemetry-instrumentation-sqlite3==0.49b1",
197
+ "opentelemetry-instrumentation-threading==0.49b1",
198
+ "opentelemetry-instrumentation-urllib==0.49b1",
199
+ "opentelemetry-instrumentation-wsgi==0.49b1",
201
200
  ]
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "0.49b0"
15
+ __version__ = "0.49b1"