mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 19:08:30 +08:00
211143c5e6
add basic build information and runtime component dependency into metrics. issue: #29664 Signed-off-by: chyezh <ye.zhen@zilliz.com>
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package metrics
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
infoMutex sync.Mutex
|
|
mqType string
|
|
metaType string
|
|
|
|
BuildInfo = prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: milvusNamespace,
|
|
Name: "build_info",
|
|
Help: "Build information of milvus",
|
|
},
|
|
[]string{
|
|
"version",
|
|
"built",
|
|
"git_commit",
|
|
},
|
|
)
|
|
|
|
RuntimeInfo = prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: milvusNamespace,
|
|
Name: "runtime_info",
|
|
Help: "Runtime information of milvus",
|
|
},
|
|
[]string{
|
|
"mq",
|
|
"meta",
|
|
},
|
|
)
|
|
)
|
|
|
|
// RegisterMQType registers the type of mq
|
|
func RegisterMQType(mq string) {
|
|
infoMutex.Lock()
|
|
defer infoMutex.Unlock()
|
|
mqType = mq
|
|
updateRuntimeInfo()
|
|
}
|
|
|
|
// RegisterMetaType registers the type of meta
|
|
func RegisterMetaType(meta string) {
|
|
infoMutex.Lock()
|
|
defer infoMutex.Unlock()
|
|
metaType = meta
|
|
updateRuntimeInfo()
|
|
}
|
|
|
|
// updateRuntimeInfo update the runtime info of milvus if every label is ready.
|
|
func updateRuntimeInfo() {
|
|
if mqType == "" || metaType == "" {
|
|
return
|
|
}
|
|
RuntimeInfo.WithLabelValues(mqType, metaType).Set(1)
|
|
}
|