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!

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 ...