Plugin InfluxFeed - some data missing
-
Using MSR 22028 on Synology Docker and InfluxDB 2.1.1. In reactor.yaml file I have in influx -section and under "select_capabilities"
x_vera_svc_cd_jackson_com_SystemMonitor: true
I don't see any errors in logs. However, in InfluxDB I can see only partial data about SystemMonitor:
The actual values are missing... They show up fine on MSR:
@toggledbits, how could I troubleshoot this further?
-
If the measurement is available for you to choose, the data is there. The problem I think here may be that all Vera values are strings, and that gave 1.8 some heartburn when trying to handle them as numbers, and 2.x is worse. What I recommend is playing around in the explorer doing queries, dropping the group specifications and the aggregators (
mean()
and the like). Learning to use the explorer to sift through the data will (a) show that it's there, and (b) have long-term benefits in building other quieries and displays, so recommended.Also, you don't need to specify every filter on a measurement (controller, entity, name). Filtering to the entity alone is sufficient, since it's going to be a unique key for that purpose.
-
If the measurement is available for you to choose, the data is there. The problem I think here may be that all Vera values are strings, and that gave 1.8 some heartburn when trying to handle them as numbers, and 2.x is worse. What I recommend is playing around in the explorer doing queries, dropping the group specifications and the aggregators (
mean()
and the like). Learning to use the explorer to sift through the data will (a) show that it's there, and (b) have long-term benefits in building other quieries and displays, so recommended.Also, you don't need to specify every filter on a measurement (controller, entity, name). Filtering to the entity alone is sufficient, since it's going to be a unique key for that purpose.
@toggledbits thanks! Selecting "view raw data" reveals those strings that you mentioned. And float conversion (toFloat() in Flux) did the trick to show a graph.
-
T tunnus marked this topic as a question on
-
T tunnus has marked this topic as solved on
-
Forgot to mention, the 22044 build includes some new InfluxDB measurement control capabilities. Documentation
-
T toggledbits locked this topic on