summaryrefslogtreecommitdiffstats
path: root/storperf/carbon
diff options
context:
space:
mode:
Diffstat (limited to 'storperf/carbon')
-rw-r--r--storperf/carbon/converter.py19
-rw-r--r--storperf/carbon/emitter.py14
2 files changed, 22 insertions, 11 deletions
diff --git a/storperf/carbon/converter.py b/storperf/carbon/converter.py
index 42dbeef..d551822 100644
--- a/storperf/carbon/converter.py
+++ b/storperf/carbon/converter.py
@@ -10,7 +10,9 @@ import calendar
import logging
import time
+
class JSONToCarbon(object):
+
def __init__(self):
self.logger = logging.getLogger(__name__)
@@ -18,11 +20,13 @@ class JSONToCarbon(object):
# Use the timestamp reported by fio, or current time if
# not present.
if 'timestamp' in json_object:
- self.timestamp = str(json_object['timestamp'])
+ timestamp = str(json_object.pop('timestamp'))
else:
- self.timestamp = str(calendar.timegm(time.gmtime()))
+ timestamp = str(calendar.timegm(time.gmtime()))
self.flat_dictionary = {}
+ self.flat_dictionary['timestamp'] = timestamp
+
self.resurse_to_flat_dictionary(json_object, prefix)
return self.flat_dictionary
@@ -36,19 +40,18 @@ class JSONToCarbon(object):
if hasattr(v, '__iter__'):
self.resurse_to_flat_dictionary(v, key)
else:
- self.flat_dictionary[key] = str(v).replace(" ", "_") + " " + self.timestamp
+ self.flat_dictionary[key] = str(v).replace(" ", "_")
elif type(json) == list:
index = 0
for v in json:
index += 1
if hasattr(v, '__iter__'):
- self.resurse_to_flat_dictionary(v, prefix+"."+str(index))
+ self.resurse_to_flat_dictionary(
+ v, prefix + "." + str(index))
else:
if prefix is None:
self.flat_dictionary[index] = str(v).replace(" ", "_")
+ " " + self.timestamp
else:
- key = prefix + "." + index;
- self.flat_dictionary[key] = str(v).replace(" ", "_") + " " + self.timestamp
- else:
- self.flat_dictionary[json] = self.timestamp
+ key = prefix + "." + index
+ self.flat_dictionary[key] = str(v).replace(" ", "_")
diff --git a/storperf/carbon/emitter.py b/storperf/carbon/emitter.py
index 526a96f..e949238 100644
--- a/storperf/carbon/emitter.py
+++ b/storperf/carbon/emitter.py
@@ -8,7 +8,10 @@
##############################################################################
import logging
+import calendar
import socket
+import time
+
class CarbonMetricTransmitter():
@@ -19,12 +22,17 @@ class CarbonMetricTransmitter():
self.logger = logging.getLogger(__name__)
def transmit_metrics(self, metrics):
+ if 'timestamp' in metrics:
+ timestamp = metrics.pop('timestamp')
+ else:
+ timestamp = str(calendar.timegm(time.gmtime()))
+
self.carbon_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.carbon_socket.connect((self.carbon_host, self.carbon_port))
for key, metric in metrics.items():
- message = key + " " + metric + "\n"
- print message
- self.carbon_socket.send(message)
+ message = key + " " + metric + " " + timestamp
+ self.logger.debug("Metric: " + message)
+ self.carbon_socket.send(message + '\n')
self.carbon_socket.close()