Query, Aggregate and Publish anything from ClickHouse to Prometheus metrics in zero time
Unlike other exporters limited to internal metrics, PromCasa is designed to unleash data from any query
- Execute recurring Clickhouse
queries
- Exctract mapped
labels
andvalues
- Aggregate results using
metric buckets
- Publish as
prometheus
metrics
Download a binary release or build from source
curl -fsSL github.com/metrico/promcasa/releases/latest/download/promcasa -O && chmod +x promcasa
PromCasa acts according to the query bucket parameters configured in /etc/promcasa.json
To provision and publish a new metrics bucket, extend the configuration with a query set:
{
"_info": "Custom Metrics from Clickhouse",
"name": "my_status", // must be unique
"help": "My Status",
"query": "SELECT status, group, count(*) as counter FROM my_index FINAL PREWHERE (datetime >= toDateTime(now()-60)) AND (datetime < toDateTime(now()) ) group by status, group",
"labels": ["status","group"], // must match columns
"counter_name": "counter",
"refresh": "60s", // Refesh takes unit sign: (ns, ms, s, m, h)
"type":"gauge" // gauge, histogram, counter
}
For a complete usage example, check out the wiki
©️ qxip/metrico Licensed under AGPLv3 as part of qryn