Hi. I used snmpwalk on the LTM to look for virtual stats. You need to make sure localhost is enabled in your snmp configuration. It usually is by defauilt.
snmpwalk -v 2c -c public localhost F5-BIGIP-LOCAL-MIB::ltmVirtualServStat
If you want to start with an OID number, you can try this:
snmpwalk -v 2c -c public localhost .1.3.6.1.4.1.3375.2.2.10.2.3.1
Note that the virtual server names use quotes. I beleive they are contained in a table. To snmget a specific virtual, you would need to use the OID number or escape the quotes.
snmpget -v 2c -c public localhost F5-BIGIP-LOCAL-MIB::ltmVirtualServStatClientPktsIn.\"mtest\"
F5-BIGIP-LOCAL-MIB::ltmVirtualServStatClientPktsIn."mtest" = Counter64: 694
To obtain the OID number, I use the -On switch:
snmpget -v 2c -On -c public localhost F5-BIGIP-LOCAL-MIB::ltmVirtualServStatClientPktsIn.\"mtest\"
.1.3.6.1.4.1.3375.2.2.10.2.3.1.6.5.109.116.101.115.116 = Counter64: 694
Thus a get with the OID number:
snmpget -v 2c -c public localhost .1.3.6.1.4.1.3375.2.2.10.2.3.1.6.5.109.116.101.115.116
Note that the OID numbers represent the ASCII equivelents. I think the 1st number in the tree ( 5 ) represents how many ASCII characters follow.
The manual gives a basic understanding:
Working with SNMP MIB files
https://support.f5.com/kb/en-us/products/big-ip_ltm/manuals/product/tmos_management_guide_10_1/tmos_snmp.html?sr=176942531041609
DevCentral has a ton of information on gathering statistics. For example, I searched on F5-BIGIP-LOCAL-MIB
http://devcentral.f5.com/Default.aspx?tabid=37&cx=015798286719081439686:g38hs-tdy64&cof=FORID:11&q=F5-BIGIP-LOCAL-MIB
Hope this helps.