Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidate HybridLog metrics [HZ-3447] #25940

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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