Skip to content

Commit

Permalink
fix: [skip e2e]metrics josn tag unmarshall failed (milvus-io#38554)
Browse files Browse the repository at this point in the history
issue: milvus-io#38551

Signed-off-by: jaime <[email protected]>
  • Loading branch information
jaime0815 authored Dec 18, 2024
1 parent a348122 commit 1639779
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/util/metricsinfo/metrics_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 1639779

Please sign in to comment.