File tree Expand file tree Collapse file tree 7 files changed +5
-18
lines changed
opentelemetry-instrumentation-fastapi
src/opentelemetry/instrumentation/fastapi
opentelemetry-instrumentation-kafka-python/src/opentelemetry/instrumentation/kafka
opentelemetry-instrumentation-psycopg2/src/opentelemetry/instrumentation/psycopg2
opentelemetry-instrumentation/src/opentelemetry/instrumentation Expand file tree Collapse file tree 7 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
1919### Added
2020
21- - ` opentelemetry-instrumentation-fastapi ` Utilize instruments-any functionality. TODO MOVE TO NEW VERSION WHEN OUT
22- ([ #3612 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3612 ) )
2321- ` opentelemetry-instrumentation-psycopg2 ` Utilize instruments-any functionality.
24- ([ #3612 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3612 ) )
22+ ([ #3610 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3612 ) )
2523- ` opentelemetry-instrumentation-kafka-python ` Utilize instruments-any functionality.
26- ([ #3612 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3612 ) )
24+ ([ #3610 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3612 ) )
2725
2826## Version 1.35.0/0.56b0 (2025-07-11)
2927
Original file line number Diff line number Diff line change 2222| [ opentelemetry-instrumentation-django] ( ./opentelemetry-instrumentation-django ) | django >= 1.10 | Yes | development
2323| [ opentelemetry-instrumentation-elasticsearch] ( ./opentelemetry-instrumentation-elasticsearch ) | elasticsearch >= 6.0 | No | development
2424| [ opentelemetry-instrumentation-falcon] ( ./opentelemetry-instrumentation-falcon ) | falcon >= 1.4.1, < 5.0.0 | Yes | migration
25- | [ opentelemetry-instrumentation-fastapi] ( ./opentelemetry-instrumentation-fastapi ) | fastapi ~ = 0.92,fastapi-slim ~ = 0.92 | Yes | migration
25+ | [ opentelemetry-instrumentation-fastapi] ( ./opentelemetry-instrumentation-fastapi ) | fastapi ~ = 0.92 | Yes | migration
2626| [ opentelemetry-instrumentation-flask] ( ./opentelemetry-instrumentation-flask ) | flask >= 1.0 | Yes | migration
2727| [ opentelemetry-instrumentation-grpc] ( ./opentelemetry-instrumentation-grpc ) | grpcio >= 1.42.0 | No | development
2828| [ opentelemetry-instrumentation-httpx] ( ./opentelemetry-instrumentation-httpx ) | httpx >= 0.18.0 | Yes | migration
Original file line number Diff line number Diff line change @@ -33,10 +33,8 @@ dependencies = [
3333]
3434
3535[project .optional-dependencies ]
36- instruments = []
37- instruments-any = [
36+ instruments = [
3837 " fastapi ~= 0.92" ,
39- " fastapi-slim ~= 0.92" ,
4038]
4139
4240[project .entry-points .opentelemetry_instrumentor ]
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515
16- # TODO: update this
17- _instruments = ()
18- _instruments_any = ("fastapi ~= 0.92" , "fastapi-slim ~= 0.92" )
16+ _instruments = ("fastapi ~= 0.92" ,)
1917
2018_supports_metrics = True
2119
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515
16- # TODO: where are these used?
1716_instruments_kafka_python = "kafka-python >= 2.0, < 3.0"
1817_instruments_kafka_python_ng = "kafka-python-ng >= 2.0, < 3.0"
1918
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515
16- # TODO: where are these used?
1716_instruments_psycopg2 = "psycopg2 >= 2.7.3.1"
1817_instruments_psycopg2_binary = "psycopg2-binary >= 2.7.3.1"
1918
20- # TODO: maybe add _instruments_any
2119_instruments = ()
2220_instruments_any = (
2321 _instruments_psycopg2 ,
Original file line number Diff line number Diff line change 104104 "library" : "fastapi ~= 0.92" ,
105105 "instrumentation" : "opentelemetry-instrumentation-fastapi==0.57b0.dev" ,
106106 },
107- {
108- "library" : "fastapi-slim ~= 0.92" ,
109- "instrumentation" : "opentelemetry-instrumentation-fastapi==0.57b0.dev" ,
110- },
111107 {
112108 "library" : "flask >= 1.0" ,
113109 "instrumentation" : "opentelemetry-instrumentation-flask==0.57b0.dev" ,
You can’t perform that action at this time.
0 commit comments