instrumentor = otel_fastapi.FastAPIInstrumentor() instrumentor.instrument_app( app=app, server_request_hook=_server_request_hook, client_request_hook=_client_request_hook, client_response_hook=_client_response_hook, tracer_provider=tracer_provider ) 記載されている説明を見ていると、Request/Response に対する hooks を仕込むことができるようです。 This instrumentation supports request and response hooks. These are functions that get cal
