Splunk Search

Getting max/last value on different period

Altexec
New Member

Hello,

I have an index with a field that record how long a computer has been running. Basically, when I display the information of a computer on 2 days I get this :

Capture.PNG

I would like to get the max value before each 'shutdown',  where the value reset to 0 after. Any simple way I could do that ?

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this

| streamstats window=2 current=f latest(sys_cpu_total_ms) as previous_sys_cpu_total_ms
| eval max_before_reset=if(isnull(sys_cpu_total_ms) OR sys_cpu_total_ms==0, previous_sys_cpu_total_ms, null())
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 ...