Files
open-im-server/pkg/common/prommetrics/grpc_push.go
T

13 lines
264 B
Go
Raw Normal View History

package prommetrics
2023-11-07 14:36:56 +08:00
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",
})
)