19 lines
628 B
Go
19 lines
628 B
Go
package metrics
|
|
|
|
import "github.com/prometheus/client_golang/prometheus"
|
|
|
|
var (
|
|
GithubOperationCount = prometheus.NewCounterVec(prometheus.CounterOpts{
|
|
Namespace: metricsNamespace,
|
|
Subsystem: metricsGithubSubsystem,
|
|
Name: "operations_total",
|
|
Help: "Total number of github operation attempts",
|
|
}, []string{"operation", "scope"})
|
|
|
|
GithubOperationFailedCount = prometheus.NewCounterVec(prometheus.CounterOpts{
|
|
Namespace: metricsNamespace,
|
|
Subsystem: metricsGithubSubsystem,
|
|
Name: "errors_total",
|
|
Help: "Total number of failed github operation attempts",
|
|
}, []string{"operation", "scope"})
|
|
)
|