func()

in v2/metrics/processor/types.go [170:178]


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