Repository URL to install this package:
|
Version:
0.3.16 ▾
|
from optparse import make_option
import time
from django.core.management.base import BaseCommand
from django_statsd.clients import statsd
class Command(BaseCommand):
help = """
Send a ping to statsd, this is suitable for using as a line in graphite
charts, for example:
http://codeascraft.etsy.com/2010/12/08/track-every-release/
`key`: key.to.ping.with
"""
option_list = BaseCommand.option_list + (
make_option('--key', action='store', type='string',
dest='key', help='Key to ping'),
)
def handle(self, *args, **kw):
statsd.timing(kw.get('key'), time.time())