Skip to content

Commit

Permalink
make InternodeInboundMetrics metrics public
Browse files Browse the repository at this point in the history
  • Loading branch information
driftx committed Feb 3, 2025
1 parent 347a24f commit 5f090a1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/java/org/apache/cassandra/metrics/InternodeInboundMetrics.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@
*/
public class InternodeInboundMetrics
{
private final MetricName corruptFramesRecovered;
private final MetricName corruptFramesUnrecovered;
private final MetricName errorBytes;
private final MetricName errorCount;
private final MetricName expiredBytes;
private final MetricName expiredCount;
private final MetricName pendingBytes;
private final MetricName pendingCount;
private final MetricName processedBytes;
private final MetricName processedCount;
private final MetricName receivedBytes;
private final MetricName receivedCount;
private final MetricName throttledCount;
private final MetricName throttledNanos;
public MetricName corruptFramesRecovered;
public MetricName corruptFramesUnrecovered;
public MetricName errorBytes;
public MetricName errorCount;
public MetricName expiredBytes;
public MetricName expiredCount;
public MetricName pendingBytes;
public MetricName pendingCount;
public MetricName processedBytes;
public MetricName processedCount;
public MetricName receivedBytes;
public MetricName receivedCount;
public MetricName throttledCount;
public MetricName throttledNanos;

/**
* Create metrics for given inbound message handlers.
Expand Down

0 comments on commit 5f090a1

Please sign in to comment.