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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...