mhansonp commented on a change in pull request #6430:
URL: https://github.com/apache/geode/pull/6430#discussion_r645868924
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/CachePerfStats.java
##########
@@ -1413,36 +1404,36 @@ public void endJob() {
};
}
- public long getRegionClearCount() {
- return stats.getLong(regionClearsId);
- }
-
- public long getBucketClearCount() {
- return stats.getLong(bucketClearsId);
- }
-
- public long getPartitionedRegionClearLocalDuration() {
- return stats.getLong(partitionedRegionClearLocalDurationId);
+ public long getClearCount() {
+ return stats.getLong(clearsId);
}
- public long getPartitionedRegionClearTotalDuration() {
- return stats.getLong(partitionedRegionClearTotalDurationId);
- }
-
- public void incRegionClearCount() {
- stats.incLong(regionClearsId, 1L);
+ public long startClear() {
+ long clearStartTime = 0L;
+ if (clock.isEnabled()) {
Review comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org