Skip to content

Commit ceb111f

Browse files
[chore] Fix the error.type table nested in the note (#3080)
1 parent 25d0aa3 commit ceb111f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/dotnet/dotnet-kestrel-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ of `[ 0.01, 0.02, 0.05, 0.1, 0.2, 0.5, 1, 2, 5, 10, 30, 60, 120, 300 ]`.
127127
**[1] `error.type`:** Starting from .NET 9, Kestrel `kestrel.connection.duration` metric reports
128128
the following errors types when a corresponding error occurs:
129129

130-
| Value | Description | Stability |
131-
|---|---|---|
130+
| Value | Description |
131+
| --- | --- |
132132
| `aborted_by_app` | The HTTP/1.1 connection was aborted when app code aborted an HTTP request with `HttpContext.Abort()`. |
133133
| `app_shutdown_timeout` | The connection was aborted during app shutdown. During shutdown, the server stops accepting new connections and HTTP requests, and it is given time for active requests to complete. If the app shutdown timeout is exceeded, all remaining connections are aborted. |
134134
| `closed_critical_stream` | A critical control stream for an HTTP/3 connection was closed. |

model/kestrel/metrics.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ groups:
5555
Starting from .NET 9, Kestrel `kestrel.connection.duration` metric reports
5656
the following errors types when a corresponding error occurs:
5757
58-
| Value | Description | Stability |
59-
|---|---|---|
58+
| Value | Description |
59+
| --- | --- |
6060
| `aborted_by_app` | The HTTP/1.1 connection was aborted when app code aborted an HTTP request with `HttpContext.Abort()`. |
6161
| `app_shutdown_timeout` | The connection was aborted during app shutdown. During shutdown, the server stops accepting new connections and HTTP requests, and it is given time for active requests to complete. If the app shutdown timeout is exceeded, all remaining connections are aborted. |
6262
| `closed_critical_stream` | A critical control stream for an HTTP/3 connection was closed. |

0 commit comments

Comments
 (0)