mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 05:32:30 +08:00
Fix fastapi version (#1664)
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 | Yes
|
||||
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 2.0 | No
|
||||
| [opentelemetry-instrumentation-falcon](./opentelemetry-instrumentation-falcon) | falcon >= 1.4.1, < 4.0.0 | Yes
|
||||
| [opentelemetry-instrumentation-fastapi](./opentelemetry-instrumentation-fastapi) | fastapi ~= 0.58 | Yes
|
||||
| [opentelemetry-instrumentation-fastapi](./opentelemetry-instrumentation-fastapi) | fastapi <= 0.90.1 | Yes
|
||||
| [opentelemetry-instrumentation-flask](./opentelemetry-instrumentation-flask) | flask >= 1.0, < 3.0 | Yes
|
||||
| [opentelemetry-instrumentation-grpc](./opentelemetry-instrumentation-grpc) | grpcio ~= 1.27 | No
|
||||
| [opentelemetry-instrumentation-httpx](./opentelemetry-instrumentation-httpx) | httpx >= 0.18.0 | No
|
||||
|
@ -34,7 +34,7 @@ dependencies = [
|
||||
|
||||
[project.optional-dependencies]
|
||||
instruments = [
|
||||
"fastapi ~= 0.58",
|
||||
"fastapi <= 0.90.1",
|
||||
]
|
||||
test = [
|
||||
"opentelemetry-instrumentation-fastapi[instruments]",
|
||||
|
@ -13,6 +13,6 @@
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
_instruments = ("fastapi ~= 0.58",)
|
||||
_instruments = ("fastapi <= 0.90.1",)
|
||||
|
||||
_supports_metrics = True
|
||||
|
@ -69,7 +69,7 @@ libraries = {
|
||||
"instrumentation": "opentelemetry-instrumentation-falcon==0.37b0.dev",
|
||||
},
|
||||
"fastapi": {
|
||||
"library": "fastapi ~= 0.58",
|
||||
"library": "fastapi <= 0.90.1",
|
||||
"instrumentation": "opentelemetry-instrumentation-fastapi==0.37b0.dev",
|
||||
},
|
||||
"flask": {
|
||||
|
Reference in New Issue
Block a user