mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
10 lines
235 B
Go
10 lines
235 B
Go
package model
|
|
|
|
type MemoryMetrics struct {
|
|
Total uint64 `json:"total"`
|
|
Free uint64 `json:"free"`
|
|
Used uint64 `json:"used"`
|
|
PercentUsed float64 `json:"percentUsed"`
|
|
PercentFree float64 `json:"percentFree"`
|
|
}
|