Searched refs:statsd (Results 1 – 3 of 3) sorted by relevance
/external/autotest/client/common_lib/cros/graphite/ |
D | statsd_mock_unittest.py | 5 import statsd_mock as statsd namespace 11 statsd.Average('average').send('name', 1) 16 connection = statsd.Connection(host='host', port=1) 17 statsd.Connection.set_defaults(host='host', port=1) 22 counter = statsd.Counter('counter') 29 statsd.Gauge('gauge').send('name', 1) 34 statsd.Raw('raw').send(subname='name', value=1, timestamp=None) 39 timer = statsd.Timer('timer') 45 test_timer = statsd.Timer('test')
|
D | stats.py | 11 import statsd 13 import statsd_mock as statsd namespace 78 self.conn = statsd.Connection(host=host, port=port) 81 class Average(statsd.Average): 92 statsd.Average.send(self, subname, value) 99 class Counter(statsd.Counter): 110 statsd.Counter._send(self, subname, value) 117 class Gauge(statsd.Gauge): 128 statsd.Gauge.send(self, subname, value) 135 class Timer(statsd.Timer): [all …]
|
/external/autotest/ |
D | global_config.ini | 288 # statsd server feeding Graphite (swift-capsule-791 GCE project)
|