mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-14 14:05:59 +08:00
a029bdc0ca
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
13 lines
226 B
Go
13 lines
226 B
Go
package prom_metrics
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
UserLoginCounter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Name: "user_login_total",
|
|
Help: "The number of user login",
|
|
})
|
|
)
|