Skip to content

Commit

Permalink
Rename keys
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayprabhu committed Dec 11, 2024
1 parent 8a1f47a commit 27ac35c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/consensus/proposer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ impl Proposer for ShardProposer {
}
self.statsd_client.gauge_with_shard(
self.shard_id.shard_id(),
"shard.pending_chunks",
"proposer.pending_blocks",
self.proposed_chunks.len() as u64,
);
}
Expand Down Expand Up @@ -394,12 +394,12 @@ impl Proposer for BlockProposer {
}
self.statsd_client.gauge_with_shard(
self.shard_id.shard_id(),
"block.pending_chunks",
"proposer.pending_shards",
self.pending_chunks.len() as u64,
);
self.statsd_client.gauge_with_shard(
self.shard_id.shard_id(),
"block.pending_blocks",
"proposer.pending_blocks",
self.proposed_blocks.len() as u64,
);
}
Expand Down

0 comments on commit 27ac35c

Please sign in to comment.