Splunk Search

How to use eval with stats and provide summary of events

SasiB137
Engager

uid,uname,in,out,seen
1,aa,8,,8
1,aa,8,,9
1,aa,8,10,9
2,bb,6,,7
3,cc,7,,8
1,aa,11,,11
1,aa,11,12,12
3,cc,9,9,9

--- expected output ---
1,aa,8,10,9
2,bb,6,,7
3,cc,7,9,9
1,aa,11,12,12

Basically, I want to group events on 'uname' and the 'in; time and update the last available time of the columns 'out', 'seen' in available group of events.

Tags (3)
0 Karma
1 Solution

woodcock
Esteemed Legend

Try this:

... | stats last(in) AS IN last(out) AS OUT last(seen) AS SEEN BY uid,uname

View solution in original post

0 Karma

woodcock
Esteemed Legend

Try this:

... | stats last(in) AS IN last(out) AS OUT last(seen) AS SEEN BY uid,uname
0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...