Python client for KairosDB. Very alpha stage!
TODO
TODO
To query datapoints, we create a query
client = KairosDBRestClient()
client.query(1448019060000, 1448019560000, metrics=[
Metric('my.test.metric').tag(host=['amazon', 'azure']).group_by(tags=['host']).aggregate(avg=(1, 'hours'))
])
or shorter
client[1448019060000:1448019560000:AvgAggregator(1,'hours'), 'my.test.metric'].tag(host=['amazon', 'azure']).group_by(tags=['host']).query()