mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-08 05:27:03 +08:00
13 lines
264 B
Go
13 lines
264 B
Go
package prommetrics
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
MsgOfflinePushFailedCounter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Name: "msg_offline_push_failed_total",
|
|
Help: "The number of msg failed offline pushed",
|
|
})
|
|
)
|