Prometheus定义的告警rule文件,定义的DM监控指标是在哪有说明?

是说代码吗:

relayLogSpaceGauge = metricsproxy.NewGaugeVec(
		&promutil.PromFactory{},
		prometheus.GaugeOpts{
			Namespace: "dm",
			Subsystem: "relay",
			Name:      "space",
			Help:      "the space of storage for relay component",
		}, []string{"type"}) // type can be 'capacity' and 'available'.

前面的 dm 和 relay 是 namespace 一样的前缀,这个 metric 是这样定义的。