Splunk Search

Multiple raw text fields returned and charted

MattQ
Explorer

There have been many answers close to my solution but I have not been able to replicate based on those.

I am looking at pulling 3 sets of data from login logs.

1. Logins
2. Login Success
3. Login Failure

and then chart them over time: 60 minutes or 24 hours.

What I want to be able to see is a trend over time showing ALL login attempts (be them success or fail) and then also graph lines underneath that (which would add up to the top line of course) of all Success and all Failure.

The text in my log returns as simple |LOGIN SUCCESS| or |LOGIN FAILURE|

Thanks!

Tags (1)
0 Karma

jonuwz
Influencer
... | rex "\|LOGIN (?<authen>\w+)\|" | timechart span=1h count by authen

Then change the chart visualisation to bar chart - stacked

No need for 2 seperate graphs, a single stacked chart will show you all the data you need

0 Karma

yannK
Splunk Employee
Splunk Employee

A small trick, I always use to distinguish oposite lines.
use an eval function to put one of the trend in negative, that way the graph will show under the X axis.

... | rex "\|LOGIN (?<authen>\w+)\|" | timechart span=1h count by authen | eval count=if(authen="FAILURE",-count,count)

0 Karma

MattQ
Explorer

This does give me a graph of all the login activity. I am actually wanting the separated data of Failure and Success as well though. To look for trends vs just an increase in activity. e.g. We see a high amount of login attempts overall, I would like the graph to have the two sub lines of success and failure to determine if an inordinate amount of that traffic is 'Failure'.

Thank you for your answer and any follow up. Really trying to get my brain around which way to think about these things.

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!

Mastering Threat Intelligence in ES 8.5, Splunk AI Assistant v2, and More from Splunk ...

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

Break the Build: Inside the KubeDoom Lounge at .conf26

    You step up to the machine. The pixelated corridors of a certain 1993 FPS load in front of you, EMP Pulse ...

Splunk Auto Ingestion Parallel Pipeline Scaling

Why this feature matters Many Splunk environments experience ingestion pressure long before the host is fully ...