lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

mac80211 (1745B)


      1 #see http://wiki.openwrt.org/doc/howto/zabbix for ready to use templates
      2 
      3 # If you want to know the exact meaning of an UserParameter, you can search in the ieee80211 standard:
      4 # http://standards.ieee.org/getieee802/download/802.11-2012.pdf
      5 # example: for mac80211.ACKFailureCount search for dot11ACKFailureCount (page 2145)
      6 
      7 # mac80211 phy discovery (like 'phy0')
      8 # example: {"data":[{"{#PHY}":"phy0"}]}
      9 #
     10 UserParameter=mac80211.phydiscovery,zabbix_helper_mac80211 discovery
     11 
     12 #phy statistics (you need {#PHY} as parameter)
     13 #
     14 UserParameter=mac80211.ACKFailureCount[*],zabbix_helper_mac80211 $1 dot11ACKFailureCount
     15 UserParameter=mac80211.FCSErrorCount[*],zabbix_helper_mac80211 $1 dot11FCSErrorCount
     16 UserParameter=mac80211.RTSFailureCount[*],zabbix_helper_mac80211 $1 dot11RTSFailureCount
     17 UserParameter=mac80211.RTSSuccessCount[*],zabbix_helper_mac80211 $1 dot11RTSSuccessCount
     18 UserParameter=mac80211.FailedCount[*],zabbix_helper_mac80211 $1 failed_count
     19 UserParameter=mac80211.FrameDuplicateCount[*],zabbix_helper_mac80211 $1 frame_duplicate_count
     20 UserParameter=mac80211.MulticastReceivedFrameCount[*],zabbix_helper_mac80211 $1 multicast_received_frame_count
     21 UserParameter=mac80211.MulticastTransmittedFrameCount[*],zabbix_helper_mac80211 $1 multicast_transmitted_frame_count
     22 UserParameter=mac80211.MultipleRetryCount[*],zabbix_helper_mac80211 $1 multiple_retry_count
     23 UserParameter=mac80211.ReceivedFragmentCount[*],zabbix_helper_mac80211 $1 received_fragment_count
     24 UserParameter=mac80211.RetryCount[*],zabbix_helper_mac80211 $1 retry_count
     25 UserParameter=mac80211.TransmittedFragmentCount[*],zabbix_helper_mac80211 $1 transmitted_fragment_count
     26 UserParameter=mac80211.TransmittedFrameCount[*],zabbix_helper_mac80211 $1 transmitted_frame_count
     27