problem with snmp integer

I'm trying to put a value into a label of a device which I get with following oid: 1.3.6.1.4.1.999.10.1.0

When I do a snmpget from a linux machine this is the result:

snmpget -v 2c -c comunity 1.2.3.4:161 1.3.6.1.4.1.999.10.1.0

SNMPv2-SMI::enterprises.999.10.1.0 = INTEGER: 264

If I add that oid as data source, it is being graphed correctly.

But if I try to put that oid into a label trough appearance I get empty value, nothing is displayed... Am I doing something wrong?

Put this on the label including the brackets

[oid(“1.3.6.1.4.1.999.10.1.0”)]

argh… I was puting the oid in iso.org.dod format not in full number… thank you

or [oid_raw(“1.3.6.1.4.1.999.10.1.0”)]

thnx again!

Welcome