SNMP statistics like input/output packets

Hi Frank,

Is there any API to get the total snmp statistics like total input/output requests/packets processed ?
SNMP library that we are currently using supports gives an API like " getSnmpGroup()" which gives us like SnmpInPkts,SnmpOutPkts,SnmpInGetResponses…
Do we have similar API to get these statistics?

You can use

SNMP4JSettings.setSnmp4jStatistics(SNMP4JSettings.Snmp4jStatistics.extended);
SNMP4J snmp4J = new ...
// Add your counter listener to receive counter events
snmp4j.getCounterSupport().addCounterListener(...);
// SNMP communication takes place here:
...