So my goal is to set up alerting mechanism for network interface drops. I am using node_network_receive_drop_total
which is a counter. My goal is to alert when drops occur meaning when count of drops go up. Lets say I have these values for drops over a period of time.
|node_network_receive_drop_total |difference
|0 |0
|1 |1
|5 |4
|5 |0
|7 |2
In this example, how can I use increase function and alert condition in grafana to alert when the difference is non-zero?