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
Copy file name to clipboardExpand all lines: src/Http/Routing/src/RoutingMetrics.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,11 @@ public RoutingMetrics(IMeterFactory meterFactory)
22
22
23
23
_matchSuccessCounter=_meter.CreateCounter<long>(
24
24
"routing-match-success",
25
-
description:"Number of connections rejected by the server. Connections are rejected when the currently active count exceeds the value configured with MaxConcurrentConnections.");
25
+
description:"Number of requests successfully matched to an endpoint by routing.");
26
26
27
27
_matchFailureCounter=_meter.CreateCounter<long>(
28
28
"routing-match-failure",
29
-
description:"Number of connections rejected by the server. Connections are rejected when the currently active count exceeds the value configured with MaxConcurrentConnections.");
29
+
description:"Number of requests that failed to match to an endpoint by routing.");
0 commit comments