Splunk Search

Display table base on the if condition

syedikramulla
Explorer

Hi,

I want to count the LOGLEVEL only for weekdays.  If there's not logs then the query should return '0'.  Can you please help me to correct this query.

index="XYZ" sourcetype=Logs LOGLEVEL=ERROR OR LOGLEVEL=FATAL OR LOGLEVEL=INFO|eval Day=strftime(_time,"%w")|
eval DayType=if((Day >=0) AND (Day <=6) ,"WeeekDay","WeekEnd") | If(DayType=="WeekDay", count(LOGLEVEL=ERROR OR LOGLEVEL=FATAL OR LOGLEVEL=INFO),'0')

 

Regards,

Syed

Labels (1)
0 Karma
1 Solution

tscroggins
Champion

@syedikramulla 

The date_wday field may already be extracted from your events, but but be mindful of time zone differences between the raw data and your Splunk settings:

index="XYZ" sourcetype=Logs (LOGLEVEL=ERROR OR LOGLEVEL=FATAL OR LOGLEVEL=INFO) date_wday!=saturday date_wday!=sunday
| timechart span=1d count

If date_wday isn't present or if you don't trust the vale:

index="XYZ" sourcetype=Logs (LOGLEVEL=ERROR OR LOGLEVEL=FATAL OR LOGLEVEL=INFO)
| eval Day=strftime(_time, "%w")
| where Day>0 AND Day<6
| timechart span=1d count

View solution in original post

syedikramulla
Explorer

thank you

tscroggins
Champion

@syedikramulla 

The date_wday field may already be extracted from your events, but but be mindful of time zone differences between the raw data and your Splunk settings:

index="XYZ" sourcetype=Logs (LOGLEVEL=ERROR OR LOGLEVEL=FATAL OR LOGLEVEL=INFO) date_wday!=saturday date_wday!=sunday
| timechart span=1d count

If date_wday isn't present or if you don't trust the vale:

index="XYZ" sourcetype=Logs (LOGLEVEL=ERROR OR LOGLEVEL=FATAL OR LOGLEVEL=INFO)
| eval Day=strftime(_time, "%w")
| where Day>0 AND Day<6
| timechart span=1d count
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!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...