Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
dranikpg committed Apr 30, 2024
1 parent 7080dd8 commit 38afb2c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/server/server_family.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2047,20 +2047,20 @@ void ServerFamily::Info(CmdArgList args, ConnectionContext* cntx) {
append("ram_misses", m.events.ram_misses);
}

if (should_enter("TIERED_V2", true)) {
append("tiered_v2_total_stashes", m.tiered_stats_v2.total_stashes);
append("tiered_v2_total_fetches", m.tiered_stats_v2.total_fetches);
append("tiered_v2_total_cancels", m.tiered_stats_v2.total_cancels);
if (should_enter("TIERED", true)) {
append("tiered_total_stashes", m.tiered_stats_v2.total_stashes);
append("tiered_total_fetches", m.tiered_stats_v2.total_fetches);
append("tiered_total_cancels", m.tiered_stats_v2.total_cancels);

append("tiered_v2_allocated_bytes", m.tiered_stats_v2.allocated_bytes);
append("tiered_v2_capacity_bytes", m.tiered_stats_v2.capacity_bytes);
append("tiered_allocated_bytes", m.tiered_stats_v2.allocated_bytes);
append("tiered_capacity_bytes", m.tiered_stats_v2.capacity_bytes);

append("tiered_v2_pending_read_cnt", m.tiered_stats_v2.pending_read_cnt);
append("tiered_v2_pending_stash_cnt", m.tiered_stats_v2.pending_stash_cnt);
append("tiered_pending_read_cnt", m.tiered_stats_v2.pending_read_cnt);
append("tiered_pending_stash_cnt", m.tiered_stats_v2.pending_stash_cnt);

append("tiered_v2_small_bins_cnt", m.tiered_stats_v2.small_bins_cnt);
append("tiered_v2_small_bins_entries_cnt", m.tiered_stats_v2.small_bins_entries_cnt);
append("tiered_v2_small_bins_filling_bytes", m.tiered_stats_v2.small_bins_filling_bytes);
append("tiered_small_bins_cnt", m.tiered_stats_v2.small_bins_cnt);
append("tiered_small_bins_entries_cnt", m.tiered_stats_v2.small_bins_entries_cnt);
append("tiered_small_bins_filling_bytes", m.tiered_stats_v2.small_bins_filling_bytes);
}

if (should_enter("PERSISTENCE", true)) {
Expand Down

0 comments on commit 38afb2c

Please sign in to comment.