This is the syntax

stream
       |from()
           .measurement('m')
       |alert()
           .info(lambda: "value" > 10)
           .warn(lambda: "value" > 20)
           .crit(lambda: "value" > 30)
           .flapping(0.25, 0.5)

What issue did you have when you tired to get it working?


On Friday, August 12, 2016 at 1:54:10 PM UTC-6, Vikas Kumar wrote:
>
> Thanks Nathaniel.
>
> I saw there is a property called *Flapping* [
> https://docs.influxdata.com/kapacitor/v0.13/nodes/alert_node/#flapping] 
> for alert node. From the description it looks like it does what I want, but 
> I couldn't make it work. Do you have an example with *Flapping* property?
>
> Thanks,
> Vikas.
>
> On Thu, Aug 11, 2016 at 9:28 AM, <[email protected] <javascript:>> 
> wrote:
>
>> Its not possible in pure TICKscript currently but it is planned 
>> https://github.com/influxdata/kapacitor/issues/643
>>
>> But in the meantime you could write a really simple UDF 
>> https://docs.influxdata.com/kapacitor/v0.13/examples/socket_udf/ to do 
>> what you want.
>>
>>
>> On Wednesday, August 10, 2016 at 1:44:54 PM UTC-6, Vikas Kumar wrote:
>>>
>>> Hello all,
>>>
>>> I'm storing network interface metrics in influxdb. One of the metric is 
>>> interface status, which is 1 if up and 0 if down. My goal is to write a 
>>> TICK script that can alert if an interface flaps. A flap can be defined as 
>>> interface status changing state. I want to count number of flaps in a time 
>>> window. Is there an aggregate function I can use to count state changes of 
>>> a metric. Or is there a tick script magic that can do this?
>>>
>>> -- 
>>> Thanks,
>>> Vikas
>>>
>> -- 
>> Remember to include the InfluxDB version number with all issue reports
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "InfluxDB" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] <javascript:>.
>> To post to this group, send email to [email protected] 
>> <javascript:>.
>> Visit this group at https://groups.google.com/group/influxdb.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/influxdb/084a89f9-3133-4763-91d0-fe64533c0d0b%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/influxdb/084a89f9-3133-4763-91d0-fe64533c0d0b%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
Remember to include the InfluxDB version number with all issue reports
--- 
You received this message because you are subscribed to the Google Groups 
"InfluxDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/influxdb.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/influxdb/2a8bd648-a9ce-4160-a964-ea9b11681672%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to