mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
13 lines
225 B
Go
13 lines
225 B
Go
package prom_metrics
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
OnlineUserGauge = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
Name: "online_user_num",
|
|
Help: "The number of online user num",
|
|
})
|
|
)
|