Skip to content

Commit

Permalink
Consolidate hybrid log metrics (#213)
Browse files Browse the repository at this point in the history
Make all per-partition hybrid log metrics DEBUG level metrics
Aggregate the most meaningful metrics to per-map metrics

Ported from #25940 and EE
https://github.com/hazelcast/hazelcast-enterprise/pull/6795 PRs.

GitOrigin-RevId: a1cb9b3e77ab874c34d580b29ebf1ff1528d36f7
  • Loading branch information
blazember authored and actions-user committed Dec 18, 2023
1 parent f7656f4 commit e687022
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -588,12 +588,15 @@ public final class MetricDescriptorConstants {
public static final String TSTORE_DEVICE_MAX_SPACE = "tstore.device.maxSpace";
public static final String TSTORE_DEVICE_USAGE = "tstore.device.usage";
public static final String TSTORE_HLOG_LENGTH = "tstore.hlog.length";
public static final String TSTORE_HLOG_AGGREGATED_COUNT = "tstore.hlog.aggregated.count";
public static final String TSTORE_HLOG_PAGE_WRITE_DURATION_AVG = "tstore.hlog.pageWriteDuration.avg";
public static final String TSTORE_HLOG_PAGE_WRITE_DURATION_MIN = "tstore.hlog.pageWriteDuration.min";
public static final String TSTORE_HLOG_PAGE_WRITE_DURATION_MAX = "tstore.hlog.pageWriteDuration.max";
public static final String TSTORE_HLOG_PAGE_WRITE_DURATION_TOTAL = "tstore.hlog.pageWriteDuration.total";
public static final String TSTORE_HLOG_READ_RECORD_DURATION_AVG = "tstore.hlog.readRecordDuration.avg";
public static final String TSTORE_HLOG_READ_RECORD_DURATION_MIN = "tstore.hlog.readRecordDuration.min";
public static final String TSTORE_HLOG_READ_RECORD_DURATION_MAX = "tstore.hlog.readRecordDuration.max";
public static final String TSTORE_HLOG_READ_RECORD_DURATION_TOTAL = "tstore.hlog.readRecordDuration.total";
public static final String TSTORE_HLOG_READ_RECORD_HITS = "tstore.hlog.readRecord.hits";
public static final String TSTORE_HLOG_READ_RECORD_MISSES = "tstore.hlog.readRecord.misses";
public static final String TSTORE_HLOG_READ_RECORD_HIT_PERCENT = "tstore.hlog.readRecord.hit.percent";
Expand Down

0 comments on commit e687022

Please sign in to comment.