mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-15 09:47:09 +08:00
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
package prommetrics
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
SingleChatMsgProcessSuccessCounter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Name: "single_chat_msg_process_success_total",
|
|
Help: "The number of single chat msg successful processed",
|
|
})
|
|
SingleChatMsgProcessFailedCounter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Name: "single_chat_msg_process_failed_total",
|
|
Help: "The number of single chat msg failed processed",
|
|
})
|
|
GroupChatMsgProcessSuccessCounter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Name: "group_chat_msg_process_success_total",
|
|
Help: "The number of group chat msg successful processed",
|
|
})
|
|
GroupChatMsgProcessFailedCounter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Name: "group_chat_msg_process_failed_total",
|
|
Help: "The number of group chat msg failed processed",
|
|
})
|
|
)
|
|
|
|
func RegistryMsg() {
|
|
registry.MustRegister(
|
|
SingleChatMsgProcessSuccessCounter,
|
|
SingleChatMsgProcessFailedCounter,
|
|
GroupChatMsgProcessSuccessCounter,
|
|
GroupChatMsgProcessFailedCounter,
|
|
)
|
|
}
|