Splunk Search

Comparing login events from multiple applications

rjm101
New Member

I would like to construct a bar graph comparing login events between two applications however I'm having trouble joining my two search queries. They both rely on count as I simply need to count the number of login events per application.

I believe the associated table would need to be output like so:

Application name | Login count
APP1 | 10
APP2 | 22

index=tracking_all topic="DATA.TRACKING.DEBATCHED.APP1" payload.props.schema="*login*" 
| stats count as APP1
| join count [search index=tracking_all topic="DATA.TRACKING.DEBATCHED.APP2" payload.props.schema="*login*" | stats count as APP2]
Tags (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Joining by count doesn't make sense to me. Try this, which should perform better without the join.

index=tracking_all payload.props.schema="*login*" | rex field=topic "\.(?P<app>\w+)$" | stats count by app | rename app as "Application name", count as "Login count" | table "Application name" "Login count"
---
If this reply helps you, Karma would be appreciated.
0 Karma

rjm101
New Member

I should probably mention that my apps aren't actually called app1 and app2, if they were I'd think that would be poor naming on my behalf. Is there a way to do this based on two app names that don't follow a pattern?

0 Karma

richgalloway
SplunkTrust
SplunkTrust

My answer presumes the app name can be extracted from the topic field, but the names themselves don't matter. Feel free to change the rex command to fit the real world.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...