core/txpool/blobpool: fix metrics name for prometheus export (#27901)

This commit is contained in:
imulmat4 2023-08-11 02:12:26 -05:00 committed by Felix Lange
parent a0491a04b5
commit 55863ce0d8
1 changed files with 8 additions and 8 deletions

View File

@ -35,15 +35,15 @@ var (
// The below metrics track the per-shelf metrics for the primary blob store // The below metrics track the per-shelf metrics for the primary blob store
// and the temporary limbo store. // and the temporary limbo store.
shelfDatausedGaugeName = "blobpool/shelf-%d/dataused" shelfDatausedGaugeName = "blobpool/shelf_%d/dataused"
shelfDatagapsGaugeName = "blobpool/shelf-%d/datagaps" shelfDatagapsGaugeName = "blobpool/shelf_%d/datagaps"
shelfSlotusedGaugeName = "blobpool/shelf-%d/slotused" shelfSlotusedGaugeName = "blobpool/shelf_%d/slotused"
shelfSlotgapsGaugeName = "blobpool/shelf-%d/slotgaps" shelfSlotgapsGaugeName = "blobpool/shelf_%d/slotgaps"
limboShelfDatausedGaugeName = "blobpool/limbo/shelf-%d/dataused" limboShelfDatausedGaugeName = "blobpool/limbo/shelf_%d/dataused"
limboShelfDatagapsGaugeName = "blobpool/limbo/shelf-%d/datagaps" limboShelfDatagapsGaugeName = "blobpool/limbo/shelf_%d/datagaps"
limboShelfSlotusedGaugeName = "blobpool/limbo/shelf-%d/slotused" limboShelfSlotusedGaugeName = "blobpool/limbo/shelf_%d/slotused"
limboShelfSlotgapsGaugeName = "blobpool/limbo/shelf-%d/slotgaps" limboShelfSlotgapsGaugeName = "blobpool/limbo/shelf_%d/slotgaps"
// The oversized metrics aggregate the shelf stats above the max blob count // The oversized metrics aggregate the shelf stats above the max blob count
// limits to track transactions that are just huge, but don't contain blobs. // limits to track transactions that are just huge, but don't contain blobs.