I have a value I am monitoring (e.g. `inc_value`). It is an incrementing value, so each time it is checked it should be larger than before.
It is collected using the key
which runs every minute.
I then apply a pre-processor of `simple change` to record the amount it has changed in the last minute.
This all works fine.
However, I also want to record the SUM of these values (the change) over the preceding hour.
Ideally, it also needs to run every 60 seconds to identify when increases and falls occur.
I can see how to get the SUM of the `inc_value` using a calculated Item, but I need the SUM of the changes, and can't see how to reference that.
I have Zabbix versions 5 and 6 running currently.
It is collected using the key
Code:
zbx.sts[inc_value]
I then apply a pre-processor of `simple change` to record the amount it has changed in the last minute.
This all works fine.
However, I also want to record the SUM of these values (the change) over the preceding hour.
Ideally, it also needs to run every 60 seconds to identify when increases and falls occur.
I can see how to get the SUM of the `inc_value` using a calculated Item, but I need the SUM of the changes, and can't see how to reference that.
I have Zabbix versions 5 and 6 running currently.
Comment