Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
369 Bytes
package alert
import (
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
)
var (
metricCreatedTotal = promauto.NewCounterVec(prometheus.CounterOpts{
Namespace: "goalert",
Subsystem: "alert",
Name: "created_total",
Help: "The total number of created alerts.",
}, []string{"service_id"})
)