You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clarify FastAPI auto-instrumentation configuration, propagation, WebSocket behavior, and log export. Also surface the opentelemetry-instrumentation README in the generated docs menu.
Assisted-by: OpenAI Codex
Copy file name to clipboardExpand all lines: instrumentation/opentelemetry-instrumentation-fastapi/src/opentelemetry/instrumentation/fastapi/__init__.py
+55Lines changed: 55 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,61 @@ async def foobar():
18
18
19
19
FastAPIInstrumentor.instrument_app(app)
20
20
21
+
Auto-instrumentation
22
+
********************
23
+
24
+
FastAPI can also be instrumented without code changes by using the
0 commit comments