func()

in v2/metrics/sender/types.go [80:87]


func (m *Registry) IncHealthCheckSuccessCount(namespace, entity string) {
	m.HealthCheckCount.With(
		prom.Labels{
			namespaceLabel: namespace,
			entityLabel:    entity,
			successLabel:   "true",
		}).Inc()
}