forked from statsd/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first pass at a python version of the Statsd client
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Sends statistics to the stats daemon over UDP | ||
class Statsd(object): | ||
|
||
# Log timing information | ||
@staticmethod | ||
def timing(stats, time, sample_rate=1): | ||
Statsd.update_stats(stats, time, sample_rate) | ||
|
||
# Increments one or more stats counters | ||
@staticmethod | ||
def increment(stats, sample_rate=1): | ||
Statsd.update_stats(stats, 1, sample_rate) | ||
|
||
# Decrements one or more stats counters | ||
@staticmethod | ||
def decrement(stats, sample_rate=1): | ||
Statsd.update_stats(stats, -1, sample_rate) | ||
|
||
# Updates one or more stats counters by arbitrary amounts | ||
@staticmethod | ||
def update_stats(stats, delta=1, sampleRate=1): | ||
if (type(stats) is not list): | ||
stats = [stats] | ||
data = {} | ||
for stat in stats: | ||
data[stat] = "%s|c" % delta | ||
|
||
StatsD.send(data, sampleRate) | ||
|
||
# Squirt the metrics over UDP | ||
@staticmethod | ||
def send(data, sample_rate=1): | ||
|
||
try: | ||
import local_settings as settings | ||
host = settings['statsd_host'] | ||
port = settings['statsd_port'] | ||
except Error: | ||
exit(1) | ||
|
||
sampled_data = [] | ||
|
||
if(sample_rate < 1): | ||
pass | ||
# for (stat in data.keys): | ||
# value = data[stat] | ||
else: | ||
sampled_data=data | ||
|
||
from socket import * | ||
udp_sock = socket(AF_INET, SOCK_DGRAM) | ||
try: | ||
for stat in sampled_data.keys(): | ||
value = data[stat] | ||
send_data = "%s:%s" % (stat, value) | ||
udp_sock.sendto(send_data, addr) | ||
except Error, e: | ||
from pprint import pprint | ||
pprint(e) | ||
pass # we don't care |