Splunk Search

How to group events by host name and display the most recent "Message" field value from each group?

ardave
Explorer

If I have fields such as:

  • _time = timestamp
  • host = the host name
  • Message = either "up" or "down"

How do I group by the host name and then select the most recent Message from each group?

I've figured out
| stats last(_time) as _time by host
but the Messages are not unique within each group, so I need to figure out how to retrieve only the latest Message to be included with each group/record in my search results.

Thank you!

Tags (4)
1 Solution

acharlieh
Influencer

You could use latest(Message) or last(Message) as an additional field in your stats command (e.g. | stats last(_time) as _time last(Message) as Message by host ). There is a good reference for Functions for stats in the docs.

Depending on your ultimate goal and what your input data looks like, if you're only interested in the last event for each host, you could also make use of the dedup command instead. Something like: | dedup host

View solution in original post

acharlieh
Influencer

You could use latest(Message) or last(Message) as an additional field in your stats command (e.g. | stats last(_time) as _time last(Message) as Message by host ). There is a good reference for Functions for stats in the docs.

Depending on your ultimate goal and what your input data looks like, if you're only interested in the last event for each host, you could also make use of the dedup command instead. Something like: | dedup host

ardave
Explorer

That does the trick. I lacked the intuition to figure out how to include multiple fields using last(). I had tried

last(fieldA, fieldB)

and

| last(fieldA) | last(fieldB)

but had not tried the way you recommended, which works. Thanks!

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...