SNMP missing values

Hey all,

I have an observium setup monitoring 200+ devices..

I replaced a piece of Ubiquity equipment running stock firmware with the same device running OpenWRT..

I have some graphs that are empty where there used to be data..

This is an snmpwalk from a remote box of the OpenWRT device with a net-snmp 5.8 client on Arch:

10.20.0.10 == OpenWRT

10.20.250.58 == Stock Firmware Device

Same EdgeRouter xsfp device..

[rouser@arch98f219 ~]$ snmpwalk -v 2c -c mgmtpub 10.20.0.10 | grep "sys" | grep STRING |head -4
SNMPv2-MIB::sysDescr.0 = STRING: Linux OpenWrt-Tech 4.14.90 #0 SMP Wed Jan 2 21:36:27 2019 mips
SNMPv2-MIB::sysContact.0 = STRING: bofh@example.com
SNMPv2-MIB::sysName.0 = STRING: HeartOfGold
SNMPv2-MIB::sysLocation.0 = STRING: office

[rouser@arch98f219 ~]$ snmpwalk -v 2c -c mgmtpub 10.20.0.10 | grep TCP | grep "Counter\|Gague"
TCP-MIB::tcpActiveOpens.0 = Counter32: 0
TCP-MIB::tcpPassiveOpens.0 = Counter32: 0
TCP-MIB::tcpAttemptFails.0 = Counter32: 0
TCP-MIB::tcpEstabResets.0 = Counter32: 0
TCP-MIB::tcpInSegs.0 = Counter32: 0
TCP-MIB::tcpOutSegs.0 = Counter32: 0
TCP-MIB::tcpRetransSegs.0 = Counter32: 0

And this is the same device running stock firmware:

[rouser@arch98f219 ~]$ snmpwalk -v 2c -c mgmtpub 10.20.250.58 | grep "sys" | grep STRING |head -4
SNMPv2-MIB::sysDescr.0 = STRING: EdgeOS v1.10.8.5142457.181120.1809
SNMPv2-MIB::sysContact.0 = STRING: My. Name (555) 123-4567
SNMPv2-MIB::sysName.0 = STRING: ER-BLDGHS
SNMPv2-MIB::sysLocation.0 = STRING: BLDGPHS

[rouser@arch98f219 ~]$ snmpwalk -v 2c -c mgmtpub 10.20.250.58 | grep TCP | grep "Counter\|Gague"
TCP-MIB::tcpActiveOpens.0 = Counter32: 168
TCP-MIB::tcpPassiveOpens.0 = Counter32: 29
TCP-MIB::tcpAttemptFails.0 = Counter32: 75
TCP-MIB::tcpEstabResets.0 = Counter32: 12
TCP-MIB::tcpInSegs.0 = Counter32: 7955299
TCP-MIB::tcpOutSegs.0 = Counter32: 12081862
TCP-MIB::tcpRetransSegs.0 = Counter32: 2366
TCP-MIB::tcpInErrs.0 = Counter32: 0
TCP-MIB::tcpOutRsts.0 = Counter32: 1253657

I have all the mibs that I could find loaded into the openwrt load..

root@OpenWrt-Tech:~# opkg list | grep snmp
libnetsnmp - 5.8-1
snmp-mibs - 5.8-1
snmpd - 5.8-1

Open to any suggestions in getting my graphs back to be able to compare and share accurate data with the powers that be..

Thanks.