Filter by timestamp or offset
This page describes how to view the most recents messages in Lenses.
Last updated
Was this helpful?
Was this helpful?
SELECT *
FROM position_reports
WHERE
_meta.timestamp > "2020-04-01" AND
_meta.timestamp < "2020-04-02";
SELECT * from mytopic
WHERE
_meta.timestamp > '2024-10-16 14:30:00' AND
_meta.timestamp < "2025-04-02 14:30:00"
;SELECT * FROM mytopic
WHERE
_meta.offset >= 100 and
_meta.offset < 1000;