mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
Co-authored-by: imulmat4 <117636097+imulmat4@users.noreply.github.com>
This commit is contained in:
parent
40d5153941
commit
a3232b7cc6
1 changed files with 8 additions and 8 deletions
|
|
@ -35,15 +35,15 @@ var (
|
|||
|
||||
// The below metrics track the per-shelf metrics for the primary blob store
|
||||
// and the temporary limbo store.
|
||||
shelfDatausedGaugeName = "blobpool/shelf-%d/dataused"
|
||||
shelfDatagapsGaugeName = "blobpool/shelf-%d/datagaps"
|
||||
shelfSlotusedGaugeName = "blobpool/shelf-%d/slotused"
|
||||
shelfSlotgapsGaugeName = "blobpool/shelf-%d/slotgaps"
|
||||
shelfDatausedGaugeName = "blobpool/shelf_%d/dataused"
|
||||
shelfDatagapsGaugeName = "blobpool/shelf_%d/datagaps"
|
||||
shelfSlotusedGaugeName = "blobpool/shelf_%d/slotused"
|
||||
shelfSlotgapsGaugeName = "blobpool/shelf_%d/slotgaps"
|
||||
|
||||
limboShelfDatausedGaugeName = "blobpool/limbo/shelf-%d/dataused"
|
||||
limboShelfDatagapsGaugeName = "blobpool/limbo/shelf-%d/datagaps"
|
||||
limboShelfSlotusedGaugeName = "blobpool/limbo/shelf-%d/slotused"
|
||||
limboShelfSlotgapsGaugeName = "blobpool/limbo/shelf-%d/slotgaps"
|
||||
limboShelfDatausedGaugeName = "blobpool/limbo/shelf_%d/dataused"
|
||||
limboShelfDatagapsGaugeName = "blobpool/limbo/shelf_%d/datagaps"
|
||||
limboShelfSlotusedGaugeName = "blobpool/limbo/shelf_%d/slotused"
|
||||
limboShelfSlotgapsGaugeName = "blobpool/limbo/shelf_%d/slotgaps"
|
||||
|
||||
// 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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue