We use Graylog to keep heartbeat signals for our machines.
Is it possible to query graylog in such a way as to see the latest timestamp for each source?
if it helps, here is it in a sql format, if it helps conceptually.
select max(timestamp),hostname from data group by host;
Any ideas?