Hey I just find your other question:
If you are okay with that, could you explain what are you gonna do with the data? Display them using Grafana? Something else? Maybe we can find a workaround.
I’m sorry I could not help you further more with the SNMP plugin problem, I remember now that I had the exact same problem.
I’m also providing you a part of my telegraf.conf
file which collect data and put it all in the same measurement named snmp
:
[[inputs.snmp]]
agents = ["some IP address"]
version = 2
community = "supervision"
tags = {network = "backbone"}
###################
# basic #
###################
[[inputs.snmp.field]]
name = "hostname"
oid = "RFC1213-MIB::sysName.0"
is_tag = true
[[inputs.snmp.field]]
name = "sysUpTime"
oid = "RFC1213-MIB::sysUpTime.0"
conversion = "float(2)"
[[inputs.snmp.field]]
name = "board_temp"
oid = "1.3.6.1.4.1.14988.1.1.3.10.0"
is_tag = false
# And all others field are "is_tag = false"