Splunk Search

Finding multiple events for same user

ateterine
Path Finder

Ok, so title might not say exactly what I'm looking for but here is my scenario.

a. We have users who received error message
b. We have users who have signed_in field value set to 'y'

We need to find those users who have field_a value set to 'y' and received the error message.

The problem is that that signed_in field does not exist in error message.

Message 1 has these fields: user_id, signed_in (boolean value of 'y' or 'n')
Message 2 has these fields: user_id, error_description

I've tried using transactions, but with millions of events search takes forever.

A push in the right direction is appreciated.

Thanks

Tags (2)
0 Karma
1 Solution

Ayn
Legend

I would go with a subsearch:

<message2 search> [search <message1 search> | dedup user_id | fields user_id] | stats count by user_id

View solution in original post

0 Karma

Ayn
Legend

I would go with a subsearch:

<message2 search> [search <message1 search> | dedup user_id | fields user_id] | stats count by user_id
0 Karma

ateterine
Path Finder

I've tried that, but for some reason every time I run that search I get different numbers

earliest="11/16/2014:09:00:00" latest="11/16/2014:20:00:00" error_description="RequestUserLeagues - Could not obtain enabled leagues" [search fantasy_leagues=y | dedup user_id | fields user_id] | stats dc(user_id) 
0 Karma

ateterine
Path Finder

After cleaning up the search and referencing Splunk docs I got it working

earliest="11/16/2014:09:00:00" latest="11/16/2014:20:00:00"  error_description="*RequestUserLeagues - Could not obtain enabled leagues*" [search earliest="11/16/2014:09:00:00" latest="11/16/2014:20:00:00"  fantasy_leagues=y | dedup user_id | fields user_id] | stats dc(user_id) as UsersWithIncorrectMessage
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...