I've just started running zabbix, and am trying to set up a few custom checks for the remote agent to do, such as:
UserParameter=net[in],netstat -i |grep -v "^Name" |awk '{i+=$5} END {print i}'
UserParameter=net[out],netstat -i |grep -v "^Name" |awk '{i+=$7} END {print i}'
to get some I/O stats, however, they never show up within the list of available checks that I can add to a graph, is there something i'm missing?
UserParameter=net[in],netstat -i |grep -v "^Name" |awk '{i+=$5} END {print i}'
UserParameter=net[out],netstat -i |grep -v "^Name" |awk '{i+=$7} END {print i}'
to get some I/O stats, however, they never show up within the list of available checks that I can add to a graph, is there something i'm missing?

Comment