Skip to content

Commit

Permalink
Fixing a bug in SocketEventParser where lines were the wrong way ar…
Browse files Browse the repository at this point in the history
…ound (#64)
  • Loading branch information
djluck authored Oct 16, 2021
1 parent 747138a commit 1ca6b88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public class SocketsEventParser : EventCounterParserBase<SocketsEventParser>, So
[CounterName("incoming-connections-established")]
public event Action<MeanCounterValue> IncomingConnectionsEstablished;

[CounterName("bytes-received")]
[CounterName("bytes-sent")]
public event Action<MeanCounterValue> BytesSent;

[CounterName("bytes-sent")]
[CounterName("bytes-received")]
public event Action<MeanCounterValue> BytesReceived;

[CounterName("datagrams-received")]
Expand Down

0 comments on commit 1ca6b88

Please sign in to comment.