statsd/examples/python_example.py

126 строки
3.7 KiB
Python
Исходник Обычный вид История

# python_example.py
# Steve Ivy <steveivy@gmail.com>
# http://monkinetic.com
2012-08-30 21:04:47 +04:00
from __future__ import print_function
from random import random
from socket import socket, AF_INET, SOCK_DGRAM
class StatsdClient(object):
def __init__(self, host='localhost', port=8125):
2012-12-23 19:15:43 +04:00
"""
Sends statistics to the stats daemon over UDP
>>> from python_example import StatsdClient
"""
2012-12-10 01:00:36 +04:00
self.addr = (host, port)
def timing(self, stat, time):
2011-02-16 08:26:43 +03:00
"""
Log timing information
2012-12-23 19:15:43 +04:00
2012-12-10 00:57:57 +04:00
>>> client = StatsdClient()
2012-12-23 19:15:43 +04:00
>>> client.timing('example.timing', 500)
2011-02-16 08:26:43 +03:00
"""
stats = {}
2012-12-23 15:13:19 +04:00
stats[stat] = "{0}|ms".format(time)
self.send(stats, self.addr)
def increment(self, stats, sample_rate=1):
2011-02-16 08:26:43 +03:00
"""
Increments one or more stats counters
2012-12-23 19:15:43 +04:00
2012-12-10 00:57:57 +04:00
>>> client = StatsdClient()
2012-12-23 19:15:43 +04:00
>>> client.increment('example.increment')
>>> client.increment('example.increment', 0.5)
2011-02-16 08:26:43 +03:00
"""
self.update_stats(stats, 1, sample_rate)
def decrement(self, stats, sample_rate=1):
2011-02-16 08:26:43 +03:00
"""
Decrements one or more stats counters
2012-12-23 19:15:43 +04:00
2012-12-10 00:57:57 +04:00
>>> client = StatsdClient()
2012-12-23 19:15:43 +04:00
>>> client.decrement('example.decrement')
2011-02-16 08:26:43 +03:00
"""
self.update_stats(stats, -1, sample_rate)
2012-08-30 21:04:47 +04:00
def update_stats(self, stats, delta=1, sampleRate=1):
2011-02-16 08:26:43 +03:00
"""
Updates one or more stats counters by arbitrary amounts
2012-12-23 19:15:43 +04:00
2012-12-10 00:57:57 +04:00
>>> client = StatsdClient()
2012-12-23 19:15:43 +04:00
>>> client.update_stats('example.update_stats', 17)
2011-02-16 08:26:43 +03:00
"""
if not isinstance(stats, list):
stats = [stats]
data = {}
for stat in stats:
2012-12-23 15:13:19 +04:00
data[stat] = "{0}|c".format(delta)
self.sample_send(data, sampleRate)
2012-08-30 21:04:47 +04:00
def sample_send(self, data, sample_rate=1):
2011-02-16 08:26:43 +03:00
"""
Sample and squirt the metrics over UDP
>>> client = StatsdClient()
>>> client.sample_send({"example.sample_send": "13|c"}, 1)
True
2011-02-16 08:26:43 +03:00
"""
return self.send(self.sample(data, sample_rate), self.addr)
@staticmethod
def sample(data, sample_rate=1):
"""
Sample data dict
TODO(rbtz@): Convert to generator
2012-08-30 21:04:47 +04:00
>>> StatsdClient.sample({"example.sample2": "2"}, 1)
{'example.sample2': '2'}
>>> StatsdClient.sample({"example.sample3": "3"}, 0)
{}
>>> from random import seed
>>> seed(1)
>>> StatsdClient.sample({"example.sample5": "5", "example.sample7": "7"}, 0.99)
{'example.sample5': '5|@0.99', 'example.sample7': '7|@0.99'}
>>> StatsdClient.sample({"example.sample5": "5", "example.sample7": "7"}, 0.01)
{}
"""
sampled_data = {}
if 0 < sample_rate < 1:
if random() <= sample_rate:
2012-12-10 00:49:34 +04:00
for stat, value in data.items():
2012-12-23 15:13:19 +04:00
sampled_data[stat] = "{0}|@{1}".format(value, sample_rate)
elif sample_rate == 0:
sampled_data = {}
else:
2012-12-10 01:00:36 +04:00
sampled_data = data
return sampled_data
2012-08-30 21:04:47 +04:00
@staticmethod
def send(_dict, addr):
"""
Sends key/value pairs via UDP.
>>> StatsdClient.send({"example.send":"11|c"}, ("127.0.0.1", 8125))
True
"""
# TODO(rbtz@): IPv6 support
udp_sock = socket(AF_INET, SOCK_DGRAM)
try:
# TODO(rbtz@): Add batch support
for item in _dict.items():
udp_sock.sendto(":".join(item).encode('utf-8'), addr)
except Exception:
import sys
2012-12-10 00:44:48 +04:00
import traceback
print("Unexpected error: ", traceback.format_exc(), file=sys.stderr)
return False
return True
if __name__=="__main__":
c = StatsdClient()
c.increment('example.python')