mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
fbaa847641
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
19 lines
306 B
Go
19 lines
306 B
Go
package metrics
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestRegisterMetrics(t *testing.T) {
|
|
// Make sure it doesn't panic.
|
|
RegisterRootCoord()
|
|
RegisterDataNode()
|
|
RegisterDataCoord()
|
|
RegisterIndexNode()
|
|
RegisterIndexCoord()
|
|
RegisterProxy()
|
|
RegisterQueryNode()
|
|
RegisterQueryCoord()
|
|
RegisterMsgStreamCoord()
|
|
}
|