Results 1 comments of Andrew

I've met same issue. But I have possible solution. ### solution just use **otel-intrumentation-asgi** ([link](https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/asgi/asgi.html)) instead of **otel-instumentation-fastapi** ```python from fastapi import FastAPI from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware app = FastAPI(...)...