Nested devices double counting sub panel. #154
Locked
ddovidenko
started this conversation in
Ideas
Replies: 1 comment 7 replies
-
If you had named the nested 200A CT device "Subpanel" instead of "Panel" would that have avoided the problem? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Really awesome script, loving it so far! Didn't see much discussion of this, but the native app avoids double counting nested device data from the 200A CTs if it knows one device is nested under another. The setup in question is when you have one Vue device with 200A CTs installed on the main breaker, and then another Vue device has 200A CTs on the breaker feeding a sub panel. The native app can handle this as it knows the primary device has the true total usage. However, with the current influx dashboard that data gets double counted. I don't think it's super hard to fix and I'm going to poke around in the dashboard queries, just seems like a potential feature to implement.
Poked around a little and it seems pretty easy to fix. For instance for the Combined Usage Gauge I just changed the filter to be more specific for my main panel:
|> filter(fn: (r) => r["device_name"] =~ /Main Panel/ and r["device_name"] !~ /-Balance/)
May just be something to note in the docs more than a feature since it's so simple. I'm just looking through the whole template and changing out the instances as appropriate.
Beta Was this translation helpful? Give feedback.
All reactions