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

13 lines
265 B
Go
Raw Normal View History

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