From 87892ba13b33d503ac6fc3864c96e25cbc1006b4 Mon Sep 17 00:00:00 2001
From: Renan DelValle <rdelval1@binghamton.edu>
Date: Fri, 7 Oct 2016 21:05:57 -0400
Subject: [PATCH] Adding some fields

---
 metrics.go | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/metrics.go b/metrics.go
index d044424..2041007 100644
--- a/metrics.go
+++ b/metrics.go
@@ -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"`
 }