func()

in v2/metrics/processor/types.go [181:189]


func (m *Registry) IncHealthCheckFailureCount(namespace, entity, subscription string) {
	labels := map[string]string{
		namespaceLabel:    namespace,
		entityLabel:       entity,
		subscriptionLabel: subscription,
		successLabel:      "false",
	}
	m.HealthCheckCount.With(labels).Inc()
}