Splunk Search

How to get each where statement just to run the EVAL command that is right under the where statement?

pjon8allstate
New Member

I have code

| eval m=case(minute>0 AND minute<15,15,minute>14 AND minute<30,15,minute>29 AND minute<45,30,minute>44,45)
| eval where m = "00"
| eval time1=strftime(_time, "%Y-%m-%d %H:00:00")
| eval where m = "15"
| eval time1=strftime(_time, "%Y-%m-%d %H:15:00")
| eval where m = "30"
| eval time1=strftime(_time, "%Y-%m-%d %H:30:00")
| eval where m = "45"
| eval time1=strftime(_time, "%Y-%m-%d %H:45:00")
| table system SMF30JBN _time SMF30SRV msused hour m time1

How do I get each where statement just to run the EVAL command that is right under the where statement

Right now ever time ends up with 45 in the minute place 

Labels (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The where command filters events.  I think you really just need another case statement.

 

| eval m=case(minute>0 AND minute<15,15,minute>14 AND minute<30,15,minute>29 AND minute<45,30,minute>44,45)
| eval time1=case(m = "00",strftime(_time, "%Y-%m-%d %H:00:00"),
                  m = "15",strftime(_time, "%Y-%m-%d %H:15:00"), 
                  m = "30",strftime(_time, "%Y-%m-%d %H:30:00"),
                  m = "45",strftime(_time, "%Y-%m-%d %H:45:00"))
| table system SMF30JBN _time SMF30SRV msused hour m time1

 

---
If this reply helps you, Karma would be appreciated.
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!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...