Skip to content

Commit 87af41a

Browse files
committed
Clean up
1 parent 7ac79e8 commit 87af41a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Routing/src/RoutingMetrics.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ public RoutingMetrics(IMeterFactory meterFactory)
2222

2323
_matchSuccessCounter = _meter.CreateCounter<long>(
2424
"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.");
2626

2727
_matchFailureCounter = _meter.CreateCounter<long>(
2828
"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.");
3030
}
3131

3232
public bool MatchSuccessCounterEnabled => _matchSuccessCounter.Enabled;

0 commit comments

Comments
 (0)