mirror of https://github.com/milvus-io/milvus.git
fix: [skip e2e]metrics josn tag unmarshall failed (#38554)
issue: #38551 Signed-off-by: jaime <yun.zhang@zilliz.com>pull/38555/head
parent
a348122758
commit
1639779b5d
|
@ -40,10 +40,10 @@ type HardwareMetrics struct {
|
|||
MemoryUsage uint64 `json:"memory_usage"`
|
||||
|
||||
// how to metric disk & disk usage in distributed storage
|
||||
Disk float64 `json:"disk,string"`
|
||||
DiskUsage float64 `json:"disk_usage,string"`
|
||||
Disk float64 `json:"disk"`
|
||||
DiskUsage float64 `json:"disk_usage"`
|
||||
|
||||
IOWaitPercentage float64 `json:"io_wait_percentage,string"` // IO Wait in %
|
||||
IOWaitPercentage float64 `json:"io_wait_percentage"` // IO Wait in %
|
||||
}
|
||||
|
||||
const (
|
||||
|
|
Loading…
Reference in New Issue