Turn log queries into status signals.
Observer reads from Loki and Elasticsearch. An error rate or a specific pattern becomes a number, and that number drives your status page like any other metric.
Observer is not a log aggregation platform, and it does not try to be. Keep Loki and Elasticsearch for searching, retention, and forensics. Observer reads the one signal inside them that your customers actually feel, the query that returns a number, and turns it into status.
Where the query runs.
Two log stores, one contract: a query that aggregates many lines into a single value. That value is all Observer carries forward.
- Grafana Loki
- LogQL queries for error rates, pattern frequency, and event counts. The aggregation runs where the logs already live.
- Elasticsearch & OpenSearch
- Query DSL with aggregations. A bucket count or a metric aggregation collapses to one number Observer can read.
A query, then nothing special.
The work is in writing a query that returns one number. After that, a log-derived metric is just a metric.
- 01
Point at your log store
Give the agent read-only access to a Loki or Elasticsearch URL. Nothing is copied out; the query runs against your cluster.
- 02
Write a query that returns a number
A LogQL range aggregation or an ES aggregation. The result has to be a single value, not a page of log lines.
- 03
The agent runs it on schedule
Every 10 to 30 seconds the agent executes the query and reads back the one number it returns.
- 04
The number behaves like any metric
Same threshold, same dwell, same SLO and incident logic. A log-derived signal is indistinguishable downstream.
Signals buried in logs, surfaced.
The events worth a status change are usually already in your logs. Observer is the part that watches for them.
5xx rate from access logs becomes the service-health verdict on a public status page.
A specific exception pattern crosses its frequency threshold and drafts an incident for on-call.
Successful login count dropping toward zero surfaces as an early security signal.
Background job completion rate falling below target reads as a reliability metric, not a buried log line.