Splunk Search

get latest events

kris99
New Member

How do I get latest events for the below search

i.e count should get the latest RegistrationState and SessionState if i search for last 15mins or 60mins. Always should get latest events to count. So I can get latest count of Available and Unregistered.

index=xx InMaintenanceMode=False |dedup MachineName,RegistrationState | eval avail=if(SessionState=="","t","f")|eval unreg=if(RegistrationState=="Unregistered","t","f") | stats count(eval(avail="t")) AS Available, count(eval(unreg="t")) AS Unregistered by SiteName,DesktopGroupName 
Tags (1)
0 Karma
1 Solution

MuS
SplunkTrust
SplunkTrust

Hi kris99,

you can use last() in your stats http://docs.splunk.com/Documentation/Splunk/6.1.4/SearchReference/CommonStatsFunctions

something like this should do the job:

index=xx InMaintenanceMode=False 
| dedup MachineName,RegistrationState 
| eval avail=if(SessionState=="","t","f")
| eval unreg=if(RegistrationState=="Unregistered","t","f") 
| stats count, last(eval(avail="t")) AS Available, last(eval(unreg="t")) AS Unregistered by SiteName,DesktopGroupName 

hope this helps ...

cheers, MuS

View solution in original post

0 Karma

MuS
SplunkTrust
SplunkTrust

Hi kris99,

you can use last() in your stats http://docs.splunk.com/Documentation/Splunk/6.1.4/SearchReference/CommonStatsFunctions

something like this should do the job:

index=xx InMaintenanceMode=False 
| dedup MachineName,RegistrationState 
| eval avail=if(SessionState=="","t","f")
| eval unreg=if(RegistrationState=="Unregistered","t","f") 
| stats count, last(eval(avail="t")) AS Available, last(eval(unreg="t")) AS Unregistered by SiteName,DesktopGroupName 

hope this helps ...

cheers, MuS

0 Karma

kris99
New Member

doesn't work..

its adding new count column and returning Available and Unregistered as 1 only

0 Karma

MuS
SplunkTrust
SplunkTrust

okay maybe I misunderstand your question, but did you try to add head http://docs.splunk.com/Documentation/Splunk/6.1.4/SearchReference/Head to your search? This will return only the latest events of your base search. Maybe this is what you are after?

0 Karma

MuS
SplunkTrust
SplunkTrust

well, last() will get you the latest events, like you asked. Maybe you have to rephrase your question and provide some more details, like event sample and expected result....

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...