You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package prometheus
|
|
|
|
const (
|
|
// GpuMemoryQuery 查询gpu显存大小
|
|
GpuMemoryQuery = "hami_memory_size{node=\"%s\"}"
|
|
// NumberOfDiskQuery 查询磁盘数量
|
|
NumberOfDiskQuery = "count(\n node_disk_info{\n instance=\"%s\", \n device=~\"sd[a-z]+|nvme[0-9]+n[0-9]+|vd[a-z]+\"\n }\n)"
|
|
)
|