Package org.opennms.protocols.snmp

Examples of org.opennms.protocols.snmp.SnmpTimeTicks


      if (snmpAgent !=null)
      {
         try
         {
            Long upTime = (Long)server.getAttribute(snmpAgent, "Uptime");
            return new SnmpTimeTicks(upTime.longValue() / 10);
         }
         catch (Exception e)
         {
            log.debug("Can't get uptime value from agent");
         }
      }
      // fallback
      return new SnmpTimeTicks(System.currentTimeMillis() / 10);
   }  
View Full Code Here

TOP

Related Classes of org.opennms.protocols.snmp.SnmpTimeTicks

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.