Splunk Search

How to search the count of failed logs per month for the past six months?

syed_star357
New Member

Hi,

I want to generate the monthly report for the past six months and need the count of failed logs for each month.

Example:

July Count 20
June Count 15
.....
....
....
Jan Count 50.

But the search below is not giving correct the output, Is there any way to get the monthly count of failed logs for the past six months?

index=networksecurity Protocol=Radius signature =Failed_Attempts | stats count by date_month, date_year
0 Karma

sundareshr
Legend

Try this

 index=networksecurity Protocol=Radius signature=* earliest=-6mon@mon latest=@mon|timechart span=1mon dc(user) AS Users_Count,count(eval(signature="Failed_Attempts")) AS Total_Failed_Attempts
0 Karma

Ravan
Path Finder

This should give you unique no of users count and total failed attempts by each month. You may need to change the user filed name as per your log data.

index=networksecurity Protocol=Radius signature=Failed_Attempts  earliest=-6mon@mon latest=@mon|timechart span=1mon dc(user) AS Users_Count,count(signature) AS Total_Failed_Attempts  
0 Karma

JDukeSplunk
Builder

Maybe this?

index=networksecurity Protocol=Radius signature =Failed_Attempts earliest="-6mon@mon" latest="@mon" | timechart span=1mon count(signature) as Total
0 Karma

syed_star357
New Member

Thanks, I want the count like total number of users and Total Failed_Attempts

0 Karma
Get Updates on the Splunk Community!

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

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