I am trying to collect a text value (Status field) from an snmp input using telegraf, but contrary to the number metrics (ex: Temperature field), this one does not show up in grafana.
My config is quite basic:
[[inputs.snmp]]
agents = ["udp://{{ hostvars['nas'].ansible_host }}:161"]
[[inputs.snmp.table]]
name = "NAS disks"
[[inputs.snmp.table.field]]
name = "Status"
oid = ".1.3.6.1.4.1.55062.2.10.2.1.7"
[[inputs.snmp.table.field]]
name = "Temperature"
oid = ".1.3.6.1.4.1.55062.2.10.2.1.8"
If I collect the field as a tag I can see the values, but I want it as a metric.
The output plugin is http with influx data format.
