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
Get Updates on the Splunk Community!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Building Momentum: Splunk Developer Program at .conf25

At Splunk, developers are at the heart of innovation. That’s why this year at .conf25, we officially launched ...