Graphing from SNMP Integer

Hi,
I’m very new to Grafana. I have it setup with Influxdb and telegraf for SNMP polling. I have created some basic panels with uptime etc using this.
On a remote server I have a custom OID that will return an integer (amount of calls). I’d like to create a graph with amount of calls on the Y and time on the X

In telegraf i have the below config

[[inputs.snmp]]
agents = [ “10.101.12.233” ]
version = 2
community = “public”
interval = “60s”
timeout = “10s”
retries = 3

[[inputs.snmp.field]]
name = “calls”
oid = “.1.3.6.1.4.1.2021.8.0”
is_tag = true

and if I run a test (telegraf --test --config /etc/telegraf/telegraf.d/test1.conf) it bring back result below so I can see its picking up the “calls” properly

snmp,agent_host=10.101.12.233,calls=55,host=grafana uptime=1467185i 1563982764000000000

Any help appreciated
TIA

Query

THe above is what I thought should work…but doesn’t

Hi,
Just to close this I found out the problem was that telegraf would not recognie these custom MIBs - I had to use the below instead

[[inputs.snmp.field]]
name = “calls”
oid = “UCD-SNMP-MIB::extTable.0”