File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
platform-sdk/swirlds-platform-core/src/main/java/com/swirlds/platform/event/preconsensus Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -80,12 +80,13 @@ public class PcesMetrics {
80
80
.withDescription ("The average duration of the sync method" );
81
81
public static final RunningAverageMetric .Config PCES_AVG_WRITE_DURATION = new RunningAverageMetric .Config (
82
82
CATEGORY , "pcesAvgWriteDuration" )
83
- .withDescription ("The average duration of the sync method " );
83
+ .withDescription ("The average duration of the write fs call " );
84
84
public static final RunningAverageMetric .Config PCES_AVG_TOTAL_WRITE_DURATION = new RunningAverageMetric .Config (
85
85
CATEGORY , "pcesAvgTotalWriteDuration" )
86
- .withDescription ("The average duration of the sync method" );
87
- public static final Counter .Config PCES_BUFFER_EXPANSIONS_COUNTER =
88
- new Counter .Config (CATEGORY , "pcesBufferExpansionCounter" );
86
+ .withDescription ("The average of the total duration of the write method" );
87
+ public static final Counter .Config PCES_BUFFER_EXPANSIONS_COUNTER = new Counter .Config (
88
+ CATEGORY , "pcesBufferExpansionCounter" )
89
+ .withDescription ("How many times the write buffer needed to be expanded" );
89
90
90
91
/**
91
92
* Construct preconsensus event metrics.
You can’t perform that action at this time.
0 commit comments