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
This adds one function matching /{*route} which subsequently groups all operations in appinsights unter the operations GET /*{route}, POST /*{route} which does not make sense, e.g. when using the (very helpful) Performance/Failures tabs
It would be much more useful to use the fastapi defined routes as the operationName to have everything grouped according to their actual operation:
GET /items/{item_id}
GET /orders/{order_id}
GET /orders/
instead of grouping everything in one GET /*{route} operation.
More information and sample code can be found in the referenced issue.