Splunk Search

How to create report on failure rates using count of errors per session and total number of sessions?

sjnorman
Explorer

We'd like to be able to report on failure rates within our application. The metric we will use is errors per session / total # of sessions.

We can identify when a user logs in by searching for a particular search phrase (i.e. "user X logged in") and when an error occurs ("error X occurred while processing the request for user X").

So, total # of sessions = number of log statements that contain the text "user X logged in"
errors per session = number of log statements that contain the text "error X occurred while processing the request for user X"

I know that I can get a count for each of the two statement types, but how do I feed that into a single report?

Tags (2)
1 Solution

strive
Influencer

Assuming that you have written regexes to extract both the texts and the field names that you have given are: UserLogin, Error

Then you can write search like this

Some search terms... | stats count(UserLogin) as TotalSessions, count(Error) as TotalErrors | eval FailureRate = TotalErrors/TotalSessions

View solution in original post

sjnorman
Explorer

I used your suggestion below but matched on raw search terms.

stats count(eval(match(_raw,"login search terms"))) as TotalSessions, count(eval(match(_raw,"error search terms"))) as TotalErrors | eval FailureRate = TotalErrors/TotalSessions

0 Karma

strive
Influencer

Assuming that you have written regexes to extract both the texts and the field names that you have given are: UserLogin, Error

Then you can write search like this

Some search terms... | stats count(UserLogin) as TotalSessions, count(Error) as TotalErrors | eval FailureRate = TotalErrors/TotalSessions

sjnorman
Explorer

Wouldn't the login and error statements be considered event types, and within those types, fields would be things such as user ID, error type, etc.?

i.e.
user X logged in = Login event type
X = user_id field

Maybe I'm misunderstanding what Splunk considers a field?

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...