Platform
Everything you need.
Nothing you don't.
Ten tightly integrated modules. One ClickHouse backend. Zero switching between tools — jump from a log line to the trace to the metric that caused it in one click.
Architecture
One backend. All signals.
Every module writes to the same ClickHouse cluster. That's how you can jump from a log line to the trace to the metric anomaly without copy-pasting IDs or switching tools.
- Fast aggregations via materialized-view rollups
- Columnar compression keeps retention affordable
- Automatic correlation by trace ID and timestamp
- PromQL-compatible engine built in — no separate Prometheus
// One query, all signals correlated
SELECT *
FROM observability.logs
WHERE trace_id = 'abc123'
-- ClickHouse · columnar scan
SELECT avg(duration_ms)
FROM observability.traces
WHERE service = 'payments'
-- one backend, all signals