Ad Widget

Collapse

Put title or description on SNMP graphs

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pcraponi
    Junior Member
    • Oct 2012
    • 15

    #1

    Put title or description on SNMP graphs

    Hi,

    As https://support.zabbix.com/browse/ZBXNEXT-1 was introduced on Zabbix 2.2, anyone have an example of how to use it?

    I need put the interface name (using ifDescr or ifAlias) on graphs.

    thanks.


    Regads,
    Paulo Raponi
  • aib
    Senior Member
    • Jan 2014
    • 1615

    #2
    Discovery Rule -> Graph prototype -> Name:
    Code:
    Traffic on {#SNMPVALUE} - {{HOST.HOST}:ifAlias[{#SNMPVALUE}].last(0)}
    Sincerely yours,
    Aleksey

    Comment

    • pcraponi
      Junior Member
      • Oct 2012
      • 15

      #3
      Here works with SNMPINDEX instead SNMPVALUE:

      Traffic on {#SNMPINDEX} - {{HOST.HOST}:ifAlias[{#SNMPINDEX}].last(0)}


      Regards,
      Paulo Raponi

      Comment

      • aib
        Senior Member
        • Jan 2014
        • 1615

        #4
        It depends of your Item prototypes.
        Mine prototypes are:
        Code:
        Outgoing traffic on {#SNMPVALUE}     ifOutOctets[{#SNMPVALUE}]
        Incoming traffic on {#SNMPVALUE}     ifInOctets[{#SNMPVALUE}]
        Alias of interface {#SNMPVALUE}      ifAlias[{#SNMPVALUE}]
        And SNMP OID which I used is:
        Code:
        SNMP OID: IF-MIB::ifAlias.{#SNMPINDEX}
        Sincerely yours,
        Aleksey

        Comment

        Working...