This page describes how to view the most recents messages in Lenses.
A popular question is "how do I see the most recent messages?" or "how do i filter for a specific date"
SQL studio shows you the oldest events (the earliest) because this is how Kafka is designed.
To skip the old events and see the most recent very fast, you need to either filter on time or offset with these filters. A list of functions is available here SQL reference
Use the now() function to view events from the last 5 minutes:
View the most recent 100 events :
Same example with time filter :
the same logic can be applied for filtering by offset :
Example and tutorials are available here