Filter by timestamp or offset
This page describes how to view the most recents messages in Lenses.
View the most recent messages
Filter by timestamp
SELECT * FROM mytopic WHERE _meta.timestamp > now() - "5m" LIMIT 100;Filter by offset
SELECT * FROM mytopic WHERE _meta.offset >= LAST_OFFSET() - 10 LIMIT 100;Slice from the past
Filter by timestamp
Filter by Offset
Last updated
Was this helpful?

