Data explorer

Query the time-series and event store

⌘⏎
SELECT
  time_bucket('1h', ts) AS hour,
  AVG(value) AS avg_flow
FROM tag_history
WHERE tag = 'line2.filler.flowrate'
  AND ts > NOW() - INTERVAL '24 hours'
GROUP BY hour
ORDER BY hour;
9 rows · 0.42s
houravg_flow (L/min)
2026-04-12 00:00412
2026-04-12 02:00408
2026-04-12 04:00411
2026-04-12 06:00415
2026-04-12 08:00418
2026-04-12 10:00421
2026-04-12 12:00419
2026-04-12 14:00422
2026-04-12 16:00420