Alerting

How to monitor a value and get alert when it keeping increasing after 5 events?

zoe
Path Finder

Hi, 

I would like to monitor one value of each event. When it keeps increasing after 5 events, an alarm should be triggert.  I uase autoregress to generate the difference between the current event and previous event (see below). But how can I monitor that the difference keeps being positive after five events? Thank you very much!

| autoregress C_avg as C_avg_prev
| eval C_detal=C_avg-C_avg_prev

zoe_0-1648836570239.png

 

Labels (1)
0 Karma
1 Solution

zoe
Path Finder

Hi @somesoni2 

thanks a lot! that is what I want. Thank you so much for your clear guide!

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

| makeresults | eval C_avg="12 14 15 4 20 22 24 28 34 45 8 90" | makemv C_avg | mvexpand C_avg | table C_avg | rename comment as "Above generates sample data. replace it with your search"
| autoregress C_avg as C_avg_prev
| eval C_detla=C_avg-C_avg_prev 
| eval C_trend=if(C_avg>C_avg_prev,1,0) 
| streamstats sum(C_trend) as sum_C_trend window=5 
| where sum_C_trend=5
0 Karma

zoe
Path Finder

Hi @somesoni2 

thanks a lot! that is what I want. Thank you so much for your clear guide!

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...