-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename metrics counter names #48536
Comments
Thank you for submitting this for API review. This will be reviewed by @dotnet/aspnet-api-review at the next meeting of the ASP.NET Core API Review group. Please ensure you take a look at the API review process documentation and ensure that:
|
API Review Notes:
API Approved! Microsoft.AspNetCore.Hosting:
Microsoft.AspNetCore.Http.Connections:
Microsoft.AspNetCore.Server.Kestrel:
Microsoft.AspNetCore.RateLimiting:
|
Background and Motivation
See #48309 (comment)
Proposed API
Microsoft.AspNetCore.Hosting:
current-requests
->http-server-current-requests
request-duration
->http-server-request-duration
Microsoft.AspNetCore.Http.Connections:
current-connections
->http-server-current-connections
connection-duration
->http-server-connection-duration
current-transports
->http-server-current-transports
http-server
is probably the wrong name here. Maybeconnection-handler
?Microsoft.AspNetCore.Server.Kestrel:
current-connections
->kestrel-current-connections
connection-duration
->kestrel-connection-duration
rejected-connections
->kestrel-rejected-connections
queued-connections
->kestrel-queued-connections
queued-requests
->kestrel-queued-requests
current-upgraded-connections
->kestrel-current-upgraded-connections
tls-handshake-duration
->kestrel-tls-handshake-duration
current-tls-handshakes
->kestrel-current-tls-handshakes
Microsoft.AspNetCore.RateLimiting:
current-leased-requests
->rate-limiting-current-leased-requests
leased-request-duration
->rate-limiting-leased-request-duration
current-queued-requests
->rate-limiting-current-queued-requests
queued-request-duration
->rate-limiting-queued-request-duration
lease-failed-requests
->rate-limiting-lease-failed-requests
Usage Examples
Alternative Designs
Risks
The text was updated successfully, but these errors were encountered: