mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
17 lines
338 B
Go
17 lines
338 B
Go
package queue
|
|
|
|
import "github.com/prometheus/client_golang/prometheus"
|
|
|
|
var queuedMsgs = prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: "maddy",
|
|
Subsystem: "queue",
|
|
Name: "length",
|
|
Help: "Amount of queued messages",
|
|
},
|
|
[]string{"module", "location"},
|
|
)
|
|
|
|
func init() {
|
|
prometheus.MustRegister(queuedMsgs)
|
|
}
|