|
@@ -15,6 +15,7 @@ func Hello() string {
|
|
|
}
|
|
|
|
|
|
type GuptaReport struct {
|
|
|
+ Time time.Time
|
|
|
LoadAvarage float64
|
|
|
CPUUsage *CPUStat `json:"cpu usage, omitempty"`
|
|
|
MemoryUsage *Memory `json:"memory,omitempty"`
|
|
@@ -23,9 +24,8 @@ type GuptaReport struct {
|
|
|
// usually you'd want a g GuptaReport reciever here ...
|
|
|
// but than you could now check for the object properties ...
|
|
|
func (g *GuptaReport) MarshalJSON() ([]byte, error) {
|
|
|
- t := time.Now()
|
|
|
report := []byte(fmt.Sprintf("{\"timestamp\": \"%d\", \"metrics\": [",
|
|
|
- t.Unix()))
|
|
|
+ g.Time.Unix()))
|
|
|
if g.CPUUsage != nil {
|
|
|
usage, _ := json.Marshal(g.CPUUsage)
|
|
|
report = append(report, usage...)
|