I have Zabbix 2.2.1 installed from EPEL on a RHEL 6.6 server.
I'm working on creating a template for monitoring a Hitachi HNAS network attached storage system. I've set up this template very similar to the "Template SNMP Interfaces" template that comes with Zabbix; the key for the discovery rule is the name of the FPGA, and it uses #SNMPINDEX to get the load values from the appropriate OID.
I have a discovery rule that gets me items, graphs, triggers etc. for the load values for the various FPGAs in this system (28 overall). The item for the FPGA load is
where #SNMPVALUE is the name of the FPGA.
I'd like a way to provide a graph of the average FPGA load across all FPGAs in the system, since the Hitachi MIB doesn't have this value. To do this, I tried creating a new item called "Average FPGA Load", of type "Calculated", and setting its formula to
However this didn't work. I suspect I can't use wildcards in formulas in this manner.
Is there a method to average values from items that are created from a discovery rule?
I'm working on creating a template for monitoring a Hitachi HNAS network attached storage system. I've set up this template very similar to the "Template SNMP Interfaces" template that comes with Zabbix; the key for the discovery rule is the name of the FPGA, and it uses #SNMPINDEX to get the load values from the appropriate OID.
I have a discovery rule that gets me items, graphs, triggers etc. for the load values for the various FPGAs in this system (28 overall). The item for the FPGA load is
Code:
fpgaUtilization[{#SNMPVALUE}]
I'd like a way to provide a graph of the average FPGA load across all FPGAs in the system, since the Hitachi MIB doesn't have this value. To do this, I tried creating a new item called "Average FPGA Load", of type "Calculated", and setting its formula to
Code:
avg(fpgaUtilization[*])
Is there a method to average values from items that are created from a discovery rule?
Comment