3.5 KiB
3.5 KiB
ASP.NET Core
ASP.NET Core Attributes
| Attribute | Type | Description | Examples | Stability |
|---|---|---|---|---|
aspnetcore.rate_limiting.result |
string | Rate-limiting result, shows whether the lease was acquired or contains a rejection reason | acquired; request_canceled |
|
aspnetcore.diagnostics.handler.type |
string | Full type name of the IExceptionHandler implementation that handled the exception. |
Contoso.MyHandler |
|
aspnetcore.diagnostics.exception.result |
string | ASP.NET Core exception middleware handling result | handled; unhandled |
|
aspnetcore.rate_limiting.policy |
string | Rate limiting policy name. | fixed; sliding; token |
|
aspnetcore.request.is_unhandled |
boolean | Flag indicating if request was handled by the application pipeline. | True |
|
aspnetcore.routing.is_fallback |
boolean | A value that indicates whether the matched route is a fallback route. | True |
|
aspnetcore.routing.match_status |
string | Match result - success or failure | success; failure |
aspnetcore.rate_limiting.result has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.
aspnetcore.diagnostics.exception.result MUST be one of the following:
aspnetcore.routing.match_status has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.
| Value | Description | Stability |
|---|---|---|
success |
Match succeeded | |
failure |
Match failed |