Definition of SNMP Gauge32 vs Counter32

后端 未结 3 634
你的背包
你的背包 2020-12-10 03:48

Can someone point me to a good definition of Gauge32 vs Counter32? I understand that Counter32 can wrap, but Gauge32 can\'t.

I\'m trying to understand their seman

3条回答
  •  不思量自难忘°
    2020-12-10 04:31

    Yes, for Gauge32 you can also use that.

    Deep down inside, Gauge32 and Counter32 are the same, except that data stored in Counter32 keeps increasing (and wrap when upper limit hits).

    http://www.ireasoning.com/javadocs/com/ireasoning/protocol/snmp/SnmpCounter32.html

    For Gauge32 you can expect the data increases and decreases based on what real world information it tries to provide.

    http://www.ireasoning.com/javadocs/com/ireasoning/protocol/snmp/SnmpGauge32.html

提交回复
热议问题