in v2/metrics/sender/types.go [90:97]
func (m *Registry) IncHealthCheckFailureCount(namespace, entity string) {
m.HealthCheckCount.With(
prom.Labels{
namespaceLabel: namespace,
entityLabel: entity,
successLabel: "false",
}).Inc()
}