deprecate unexpected healing failed counters (#19705)

simplify this to avoid verbose metrics, and make
room for valid metrics to be reported for alerting
etc.
This commit is contained in:
Harshavardhana
2024-05-09 11:04:41 -07:00
committed by GitHub
parent 7b7d2ea7d4
commit b534dc69ab
5 changed files with 76 additions and 80 deletions

View File

@@ -70,7 +70,7 @@ func newBgHealSequence() *healSequence {
reportProgress: false,
scannedItemsMap: make(map[madmin.HealItemType]int64),
healedItemsMap: make(map[madmin.HealItemType]int64),
healFailedItemsMap: make(map[string]int64),
healFailedItemsMap: make(map[madmin.HealItemType]int64),
}
}