in v2/metrics/processor/types.go [219:225]
func (i *Informer) GetMessageLockRenewalTimeoutCount() (float64, error) {
var total float64
common.Collect(i.registry.MessageLockRenewalTimeoutCount, func(m *dto.Metric) {
total += m.GetCounter().GetValue()
})
return total, nil
}