Alerting

I want to know when there is a change in the user list.

mcdp_matsumoto
New Member

I want to know when there is a change in the user list.
For example, if you get the following json once a day, I want to send an alert if a user has been added or deleted compared to the previous day's json.

Is there any way?

{
1: tom
2: nick
3: potter
4: aina
}

0 Karma
1 Solution

to4kawa
Ultra Champion
your_search earliest=@d
| spath
| eval user_list=""
| foreach * 
    [eval user_list=user_list + '<<FIELD>>']
| table user_list
| append [ search your_search earliest=-1d@d latest=@d
| spath 
| eval user_list=""
| foreach * 
    [eval user_list=user_list + '<<FIELD>>']
| table user_list ]
| stats dc(user_list) as count
| where count > 1

hi, @mcdp_matsumoto
if event count > 0 , Fire alert.

View solution in original post

0 Karma

to4kawa
Ultra Champion
your_search earliest=@d
| spath
| eval user_list=""
| foreach * 
    [eval user_list=user_list + '<<FIELD>>']
| table user_list
| append [ search your_search earliest=-1d@d latest=@d
| spath 
| eval user_list=""
| foreach * 
    [eval user_list=user_list + '<<FIELD>>']
| table user_list ]
| stats dc(user_list) as count
| where count > 1

hi, @mcdp_matsumoto
if event count > 0 , Fire alert.

0 Karma

mcdp_matsumoto
New Member

Thank you for your answer.
Finally, my solution is as follows. Thank you very much.

json

[
{
id: xxxxxx
login: tom
},
{
id: yyyyyy
login: aina
},



]

spl

your_search | spath {}.login
| eval user_list='{}.login'
| table user_list
| append [ search your_search
| spath {}.login
| eval user_list='{}.login'
| table user_list ]
| stats dc(user_list) as count
| where count > 1

0 Karma

pramit46
Contributor

Even though it's a very crude way, but I think it will get your job done. You may create a lookup file to store the count of users each day by reading the user list files each day (See below) and compare the counts from the previous day in your alert query.

| makeresults 
| eval x="{
1: tom
2: nick
3: potter
4: aina
}" 
| rex field=yourlist mode=sed "s/\n/|/g" 
| rex field=yourlist "\{\|(?P<name>[\w\d\s|:]*)\|\}" 
| makemv name delim="|" 
| mvexpand name|stats count as x
0 Karma

niketn
Legend

@mcdp_matsumoto are the numbers before the names, the count of Users on a particular day or ids of the user?
Depending on this the SPL will completely vary.

Since the final SPL will be very much dependent on the JSON data being passed, community will be able to assist you better if you provide actual JSON structure that will be used (you can mock anonymize any sensitive data similar to how you have done in the question.)

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
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, ...