Skip to content

Commit

Permalink
fix: typo in prometheus sample metrics (#2309)
Browse files Browse the repository at this point in the history
  • Loading branch information
asafdl authored Nov 9, 2023
1 parent e8088b4 commit 3a5a68f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ public sealed class PrometheusSocketMetrics : IMetricsConsumer<SocketsMetrics>


private static readonly Counter _incomingConnectionsEstablished = Metrics.CreateCounter(
"yarp_sockets_incomming_connections_established",
"yarp_sockets_incoming_connections_established",
"Number of incoming (Accept) Socket connections established"
);

private static readonly Counter _bytesReceived = Metrics.CreateCounter(
"yarp_sockets_bytes_recieved",
"yarp_sockets_bytes_received",
"Number of bytes received"
);

Expand Down

0 comments on commit 3a5a68f

Please sign in to comment.