This repository has been archived on 2024-04-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elektron/metrics.go

9 lines
145 B
Go
Raw Normal View History

2016-10-07 21:04:58 -04:00
package main
type Metric struct{
2016-10-07 21:05:57 -04:00
Name string `json:"name"`
CPU float64 `json:"cpu"`
RAM float64 `json:"ram"`
Watts float64 `json:"watts"`
2016-10-07 21:04:58 -04:00
}