Alerting

How to create an alert when a field value changes?

evallja
Path Finder

Hello everyone,

I have the below search:

index=flexcube
[|inputlookup AUTHs.csv
| fields + role_id ]
[|inputlookup function_ids.csv
| rename C_FUNCTION_ID as role_function
| fields + role_function]
| rename role_function as function_id
| chart latest(control_1) as NEW, latest(control_8) as AUTH over function_id by role_id limit=0

and it returns the following table:

function_id              AUTH: A      AUTH: B       AUTH: C      AUTH: D
1 ACDCBIRD                                         0                     1
2 CADAMBLK               1                                                                     0
3 CLDACAUT                1                      0                      0                    0
4 CLDACCNT                0                        1                  1                        1              ...etc.

I want to create an alert that catches only when a value changes from blank to 0 or 1, or vice versa.

Thanks in advance.

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi, please try this:

index=flexcube [|inputlookup AUTHs.csv | fields + role_id ] [|inputlookup function_ids.csv
| rename C_FUNCTION_ID AS function_id
| stats 
   dc(control_1) AS control_1_count 
   dc(control_8) AS control_8_count
   values(control_1) AS control_1 
   values(control_8) AS control_8
   BY function_id role_id
| where control_1_count>1 OR control_8_count>1

Ciao.

Giuseppe

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

You could try something like this

| fillnull value="Create alert"
| search "Create alert"
0 Karma
Get Updates on the Splunk Community!

Unlock Database Monitoring with Splunk Observability Cloud

  In today’s fast-paced digital landscape, even minor database slowdowns can disrupt user experiences and ...

Purpose in Action: How Splunk Is Helping Power an Inclusive Future for All

At Cisco, purpose isn’t a tagline—it’s a commitment. Cisco’s FY25 Purpose Report outlines how the company is ...

[Upcoming Webinar] Demo Day: Transforming IT Operations with Splunk

Join us for a live Demo Day at the Cisco Store on January 21st 10:00am - 11:00am PST In the fast-paced world ...