I'm trying to send metrics to graphite from my python app through statsD, I'm using this client (which I understand is most common).
But I can't figure out how to send metrics with tags.
I've tried this syntax (from here):
c.incr('foo.bar,tag1=val')
And also this (got the idea from here):
c.incr('foo.bar;tag1=val')
But nothing seem to work.
Did anyone succeeded sending statsd metrics from python with tags?
Thanks
c.incr('foo.bar#tag1=val')
without success – Tzvika Mordoch