How to convert time from Timeticks (ASN_TIMETICKS from net-snmp library) to any c++ datetime format? Thx.

link|improve this question

1  
Divide by 100 and use localtime/strftime? – Joachim Pileborg Jan 25 at 13:09
feedback

1 Answer

up vote 2 down vote accepted

Time Ticks are units of 10ms elapsed since the agent last reinitialized; in order to convert to an absolute timestamp, you need to establish a mapping between agent uptime and wall clock time.

Typically, you query sysUptime.0 and note down when the response arrived in order to get the initialization time; you can either do this once at startup and everytime you receive one of the standard traps (cold/warm restart, link up) in order to catch agent restarts, or you include it in the GET request (for GETNEXT, ask for sysUptime, leaving out the instance ID).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.