Member-only story
Monitoring the Asus RT-AC68U with the Telegraf agent Grafana and InfluxDB
11 min readDec 4, 2020
After completing the installation of Influxdb and Grafana, I wanted to capture metrics from my ASUS RT-AC68U router. The first option I looked at was from this article. This author’s approach was to use telegraf as an SNMP collector and send metrics to InfluxDB. I’m familiar with SNMP and I liked that is was a pretty standard access mechanism for network gear. I found this thread on snbforums that included configuration for telegraf collecting from a similar router. I did some SNMP walks on the router and found some of the data I was looking for
#snmpwalk -v 2c -c public 192.168.1.1 UCD-SNMP-MIB::systemStats
UCD-SNMP-MIB::ssIndex.0 = INTEGER: 1
UCD-SNMP-MIB::ssErrorName.0 = STRING: systemStats
UCD-SNMP-MIB::ssSwapIn.0 = INTEGER: 0 kB
UCD-SNMP-MIB::ssSwapOut.0 = INTEGER: 0 kB
UCD-SNMP-MIB::ssIOSent.0 = INTEGER: 0 blocks/s
UCD-SNMP-MIB::ssIOReceive.0 = INTEGER: 0 blocks/s
UCD-SNMP-MIB::ssSysInterrupts.0 = INTEGER: 397 interrupts/s
UCD-SNMP-MIB::ssSysContext.0 = INTEGER: 6711 switches/s
UCD-SNMP-MIB::ssCpuUser.0 = INTEGER: 0
UCD-SNMP-MIB::ssCpuSystem.0 = INTEGER: 2
UCD-SNMP-MIB::ssCpuIdle.0 = INTEGER: 96
UCD-SNMP-MIB::ssCpuRawUser.0 = Counter32: 6532368
UCD-SNMP-MIB::ssCpuRawNice.0 = Counter32: 0
UCD-SNMP-MIB::ssCpuRawSystem.0 = Counter32: 11346811
UCD-SNMP-MIB::ssCpuRawIdle.0 = Counter32: 1085538365…