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
The /endpoint_metrics endpoint currently has a response schema that is inspired by the structure of OpenAPI documents using two nested dictionaries for URL paths and methods:
The following schema is more consistent with the rest of the API, makes schema evolution easier, and makes code of consuming clients more readable (e.g. path and method are now named concepts) and easier to write (self-contained objects with full context, path and method):
(Requested by @msftsettiy)
The
/endpoint_metrics
endpoint currently has a response schema that is inspired by the structure of OpenAPI documents using two nested dictionaries for URL paths and methods:The following schema is more consistent with the rest of the API, makes schema evolution easier, and makes code of consuming clients more readable (e.g. path and method are now named concepts) and easier to write (self-contained objects with full context, path and method):
The only downside is that it is not immediately clear anymore that "path" and "method" are the keys.
The text was updated successfully, but these errors were encountered: