fix: [skip e2e]metrics josn tag unmarshall failed (#38554)

issue: #38551

Signed-off-by: jaime <yun.zhang@zilliz.com>
pull/38555/head
jaime 2024-12-18 18:02:46 +08:00 committed by GitHub
parent a348122758
commit 1639779b5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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 (