I have snmp table data coming into a bucket and I am trying to filter by the _value column but in doing so I always get “No Results” even though the data is there. I can filter by any other column like _field or host that shows in the main results but never from _value. I even tried to grab the main data set and push it into a new bucket and assigning the results of _value to a new column of a different name and filtering on that column also gives “No Results”.
Can someone give some insights as to why data that I can see exists cannot be filtered like the other columns can?
This basically gives me a list of volume names that are mounted on the host nas-01 in the _value column, but I don’t want all the volumes I want a specific volume by name but when I add…
|> filter(fn:(r) => r._value == "Volume_1")
It returns No Results even though the volume “Volume_1” IS on the list of volumes returned.
This is the Raw Data showing in Influx, type is string.
Now I have an issue where I have a Volume_1 and Volume_1_1 in the mix but only want to filter Volume_1. Because that exists as part of Volume_1_1 they both show. Is there a way to incorporate a NOT in the filter so match Volume_1 but not Volume_1_1?