Welcome to mirror list, hosted at ThFree Co, Russian Federation.

metrics.go « command « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e73d1fab0a96703b489607e87d1fe93e94ab7467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package command

import (
	"github.com/prometheus/client_golang/prometheus"
	"github.com/prometheus/client_golang/prometheus/promauto"
)

var inFlightCommandGauge = promauto.NewGauge(
	prometheus.GaugeOpts{
		Name: "gitaly_commands_running",
		Help: "Total number of processes currently being executed",
	},
)