mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
11 lines
277 B
Go
11 lines
277 B
Go
package model
|
|
|
|
type BasicDiskMetrics struct {
|
|
Total uint64 `json:"total"`
|
|
Free uint64 `json:"free"`
|
|
Used uint64 `json:"used"`
|
|
DiskPath string `json:"diskPath"`
|
|
PercentUsed float64 `json:"percentUsed"`
|
|
PercentFree float64 `json:"percentFree"`
|
|
}
|