コード例 #1
0
ファイル: events.py プロジェクト: carezone/redash
    def post(self):
        for stat_line in request.data.split():
            stat, value = stat_line.split(":")
            statsd_client._send_stat("client.{}".format(stat), value, 1)

        return "OK."
コード例 #2
0
ファイル: controllers.py プロジェクト: ProductMadness/redash
    def post(self):
        for stat_line in request.data.split():
            stat, value = stat_line.split(':')
            statsd_client._send_stat('client.{}'.format(stat), value, 1)

        return "OK."