Adding some fields

This commit is contained in:
Renan DelValle 2016-10-07 21:05:57 -04:00
parent 0623ceace0
commit 87892ba13b

View file

@ -1,5 +1,8 @@
package main
type Metric struct{
Name string `json:"name"`
CPU float64 `json:"cpu"`
RAM float64 `json:"ram"`
Watts float64 `json:"watts"`
}