Problem
You have questions about various results calculated by the ktranslate
network monitoring agent.
Background
ktranslate
returns the raw data collected by SNMP polling in almost every instance with the following caveats:
- CPU utilization %
- Memory utilization %
- Interface utilization %
- Interface error %
- Various metrics with the
enum
orconversion
functions applied in their configuration
Solution
Metric Name: kentik.snmp.CPU
CPU is generally returned in a direct OID that provides a integer or float value representing percentage utilization. In rare cases, there is only a result for CPU idle, which is translated to CPU using this formula:
CPU = 100 - CPU Idle
Metric Name: kentik.snmp.MemoryUtilization
Unlike CPU, memory utilization is rarely presented as a direct OID value. To calculate the percent utilization, ktranslate uses this logic:
If Memory Used and Memory Free are available: Memory Utilization = ( Memory Used / (Memory Free + Memory Used) ) * 100
If Memory Total and Memory Free are available: Memory Utilization = ( (Memory Total - Memory Free) / Memory Total ) * 100
If Memory Total and Memory Used are available: Memory Utilization = ( Memory Used / Memory Total ) * 100
If Memory Total, Memory Buffer, and Memory Cache are available: Memory Utilization = ( ( Memory Total - (Memory Buffer + Memory Cache ) ) / Memory Total ) * 100
Metric Name: kentik.snmp.IfInUtilization
| kentik.snmp.IfOutUtilization
Interface utilization follows the industry standard approach of calculating the delta in bytes and dividing by the product of the interface's configured speed and the time delta since the last collection was made.
For example, assuming 1 is the previous data point and 2 is the most recent:
( ( ifInOctets_2 - ifInOctets_1 ) * 8 * 100 ) / ( (sysUptime_2 - sysUptime_1) * ifSpeed )
Ktranslate, uses the value of either ifHCInOctets (receive) or ifHCInOctets (transmit); replacing ifSpeed
in the denominator with the value of ifHighSpeed as needed:
( inBytes * 8 * 100 ) / ( uptime * ( ifSpeed * 10000 ) )or( outBytes * 8 * 100 ) / ( uptime * ( ifSpeed * 10000 ) )
Tip
A common reason for seeing inaccurate interface utilization percentages is the configured interface speed on the device doesn't reflect the real interface speed. For instance, a 1Gb MPLS circuit on a 10Gb interface would show percentages at only 10% of the real utilization. To resolve this, consult your vendor's documentation on setting the interface bandwidth.
Metric Name: kentik.snmp.ifInErrorPercent
| kentik.snmp.ifOutErrorPercent
Interface error percentage uses the value of either ifInErrors (receive) or ifOutErrors (transmit), divided by either ifHCInUcastPkts (receive) or ifHCOutUcastPkts (transmit). In ktranslate, the formula looks like this:
( ifInErrors / ifHCInUcastPkts ) * 100or( ifOutErrors / ifHCOutUcastPkts ) * 100
Metric Name: Various
Other SNMP metrics are converted based on the existence of the enum
and conversion
functions in their respective SNMP profile.
Profile Setting | Usage |
---|---|
| Used to override the |
| Used to handle SNMP enumerations which convert the integer value of a dimensional metric into the enumerated value in an attribute decorated on the dimensional metric (using the same metric name suffix). A common example is the conversion of kentik.snmp.if_AdminStatus to the enumerated value of if_AdminStatus as either |
| Used to convert hexadecimal values into integer format. Options for current: |
| Used to convert hexadecimal values into 4-octet IPv4 strings. |
| Used to convert hexadecimal values into MAC address strings. |
| Used for enumeration of the upsBasicStateOutputState ASCII string in the |
| Places a regex match on the OID output to capture substrings; needs to be wrapped in quotes and have backslashes escaped. |
| Used to create a gauge metric with the value of |