Last active
April 29, 2019 17:21
-
-
Save codification/1538841 to your computer and use it in GitHub Desktop.
Graphite client in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import socket | |
def collect_metric(name, value, timestamp): | |
sock = socket.socket() | |
sock.connect( ("localhost", 2003) ) | |
sock.send("%s %d %d\n" % (name, value, timestamp)) | |
sock.close() | |
def now(): | |
return int(time.time()) | |
collect_metric("metric.name", 42, now()) |
Quite correct!
sock.send("%s %d %d\n" % (name, value, timestamp))
should be
sock.send("%s %f %d\n" % (name, value, timestamp))
i was using this script in my Django app and then i figure out that i'm loosing precision ... i was storing 0.0 instead of 0.52 and 0.6
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
now should be "return int(time.time())"