SNMP collection

Hi I have Telegraf up and running and collecting some SNMP data I’m representing in Grafana with InfluxDB.

At present, I have simple interface queries below which works fine.

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

[[inputs.snmp.field]]
name = “hostname”
oid = “RFC1213-MIB::sysName.0”
is_tag = true

[[inputs.snmp.table]]
name = “interface”
inherit_tags = [ “hostname” ]
oid = “IF-MIB::ifTable”

[[inputs.snmp.table.field]]
  name = "ifDescr"
  oid = "IF-MIB::ifDescr"
  is_tag = true

I want to collect some other statistics which are in another table. I have the exact full oid (it’s the only thing in the table I need).

How would I go about obtaining the result of this single string?

Thanks
Dan.