Plugin InfluxFeed - Selecting Capabilities for Export - how to
-
Can you show your entire config for InfluxDB plugin? The indenting of your example would be incorrect to start, so I'd like to see the whole thing and make sure you're starting from something that has a chance at being functional. This doesn't look right on its face, but being a subset of the entire, it's hard to be sure.
-
Hi, this is the config
plugins: - id: influx # See the docs under Standard Plugins for configuration details. implementation: InfluxFeed enabled: true name: InfluxDB Feed config: # influx_url - URL to access InfluxDB server (default: http://localhost:8086) influx_url: "http://10.0.4.71:8086" # # ----- For InfluxDB 2.0+ ONLY ----- # influx_token - Token from InfluxDB 2.0 UI (required) influx_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # # influx_org - Organization ID (required) influx_org: myhome # # influx_bucket - Bucket name to which points are written (required) influx_bucket: reactor # # # ----- Optional (all versions) ----- # influx_retention_policy - Retention policy (optional). If not specified, # the retention policy of the bucket/database # will be used. #influx_retention_policy: "" # # ----- Filtering (all versions) ----- # select_capabilities - Capabilities that should be exported in addition # to the defaults. These are key/value pairs. If the # value is false, the capability is not exported (so # you can override the default). If the value is an # object, it may contain an "attributes" key with an # array value containing the names of attributes to # be exported (other attributes in the capability # are ignored). select_capabilities: light_sensor: true power_sensor: true dimming: false x_ezlo_item: true attributes: - electric_meter_kwh - electric_meter_watt # zwave_network: false # do not export this capability wx: # export wx capability, but only named attributes attributes: - temperature - humidity - feels_like
-
OK. Your indenting is wonky and there's another error that's probably causing problems parsing the entire config. You should use a tool like https://yamlchecker.com on any changes you make (paste the entire config file) until you get used to the idiosyncrasies of YAML, and then any time you run into problems. There are also probably messages in the log file about problems reading the file, too, so be sure and always check there when something is not working as expected.
Specifically, on line 42, you can't have object keys in this position, because line 41 defines a value (
true
) forx_ezlo_item
. Usingtrue
says you want everything from that capability; it's a short-cut. If you mean to limit the set of attributes forx_ezlo_item
, then the value there must be an object for whichattributes
is a key. So that would correctly look like this (other lines redacted for clarity):select_capabilities: x_ezlo_item: attributes: - electric_meter_kwh - electric_meter_watt
Your
wx
line (47) is not correctly indented, nor is the comment line before it, so that's going to be trouble as well. It should look like this in all:plugins: - id: influx # See the docs under Standard Plugins for configuration details. implementation: InfluxFeed enabled: true name: InfluxDB Feed config: # influx_url - URL to access InfluxDB server (default: http://localhost:8086) influx_url: "http://10.0.4.71:8086" # # ----- For InfluxDB 2.0+ ONLY ----- # influx_token - Token from InfluxDB 2.0 UI (required) influx_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # # influx_org - Organization ID (required) influx_org: myhome # # influx_bucket - Bucket name to which points are written (required) influx_bucket: reactor # # # ----- Optional (all versions) ----- # influx_retention_policy - Retention policy (optional). If not specified, # the retention policy of the bucket/database # will be used. #influx_retention_policy: "" # # ----- Filtering (all versions) ----- # select_capabilities - Capabilities that should be exported in addition # to the defaults. These are key/value pairs. If the # value is false, the capability is not exported (so # you can override the default). If the value is an # object, it may contain an "attributes" key with an # array value containing the names of attributes to # be exported (other attributes in the capability # are ignored). select_capabilities: light_sensor: true power_sensor: true dimming: false x_ezlo_item: attributes: - electric_meter_kwh - electric_meter_watt #zwave_network: false # do not export this capability wx: # export wx capability, but only named attributes attributes: - temperature - humidity - feels_like
Unfortunately, I realize YAML is a nuisance, but JSON would be worse, I loathe XML and its progeny, and the Microsoft-ish INI format isn't really up to the task either. I begrudgingly chose YAML because there's little that's better, and a lot of tools and documentation for it. Eventually, there will be a GUI for this kind of configuration, but that's a good way off yet.
-
I corrected the file
Valid YAML!
Still no changes in influxdb
I created a new bucket and new api tokens, when I go in "Explore" --> Filter Measurement -->Filter
I see only default data:
dimming is there
no wx.feels_like
and no x_ezlo_itemalso I stopped both container and I started first influxdb and then MSR, where I can check now?
-
It will only log things when things change. So make sure you are making things happen.
Also, what version of InfluxDB are you using?
And check the log file, particularly the messages output at startup.
-
Is is version InfluxDB 2.1.1
a lot of Warm from Ezlo
[latest-21342]2021-12-11T22:44:11.586Z <EzloController:WARN> EzloController#ezlo no implementation mapping for attributes from match category=level_sensor cap value_sensor [latest-21342]2021-12-11T22:44:11.599Z <EzloController:WARN> EzloController#ezlo no implementation mapping for attributes from match category=level_sensor cap value_sensor [latest-21342]2021-12-11T22:44:11.615Z <EzloController:WARN> EzloController#ezlo no implementation mapping for attributes from match category=level_sensor cap value_sensor [latest-21342]2021-12-11T22:44:11.633Z <EzloController:WARN> EzloController#ezlo no implementation mapping for attributes from match category=level_sensor cap value_sensor [latest-21342]2021-12-11T22:44:11.637Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.637Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.637Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.638Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.639Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.639Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.640Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.640Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.641Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.641Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.642Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.642Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.643Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.643Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.644Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.644Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.648Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.649Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.649Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.649Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.651Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.651Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.651Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.651Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.657Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.657Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.658Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.658Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.659Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.660Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.660Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.660Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.663Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.663Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.663Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.664Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.665Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.666Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.666Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.666Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.667Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.668Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.668Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.669Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.670Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.red for attribute rgb_color.red in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member red of null [latest-21342]2021-12-11T22:44:11.670Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.green for attribute rgb_color.green in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member green of null [latest-21342]2021-12-11T22:44:11.671Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.blue for attribute rgb_color.blue in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member blue of null [latest-21342]2021-12-11T22:44:11.671Z <EzloController:ERR> EzloController#ezlo failed to evaluate expression value.cwhite > 0 ? floor( 5500 + value.cwhite * 3500 / 255 ) : floor( 2000 + value.wwhite * 3500 / 255 ) for attribute color_temperature.value in category=dimmable_light;subcategory=dimmable_colored: ReferenceError: Invalid reference to member cwhite of null [latest-21342]2021-12-11T22:44:11.693Z <EzloController:WARN> EzloController#ezlo no implementation mapping for attributes from match category=door_lock cap keypad [latest-21342]2021-12-11T22:44:11.727Z <EzloController:INFO> EzloController#ezlo hub inventory complete/successful; 971ms [latest-21342]2021-12-11T22:44:11.728Z <EzloController:NOTICE> Controller EzloController#ezlo is now online. [latest-21342]2021-12-11T22:44:11.730Z <DynamicGroupController:ERR> DynamicGroupController#groups selector criterion invalid type, expecting object, got string (battery_power) [latest-21342]2021-12-11T22:44:11.731Z <DynamicGroupController:ERR> DynamicGroupController#groups error in selection for Group#groups>low_battery: Error: Invalid selector [latest-21342]2021-12-11T22:44:11.731Z <DynamicGroupController:CRIT> Error: Invalid selector Error: Invalid selector at DynamicGroupController._select (/opt/reactor/server/lib/DynamicGroupController.js:314:23) at DynamicGroupController._update_group (/opt/reactor/server/lib/DynamicGroupController.js:219:44) at /opt/reactor/server/lib/DynamicGroupController.js:298:38 at Array.forEach (<anonymous>) at DynamicGroupController._update (/opt/reactor/server/lib/DynamicGroupController.js:295:82) at /opt/reactor/server/lib/DynamicGroupController.js:174:42 at processTicksAndRejections (node:internal/process/task_queues:96:5) [latest-21342]2021-12-11T22:44:11.732Z <app:NOTICE> Starting HTTP server and API... [latest-21342]2021-12-11T22:44:11.737Z <app:NOTICE> Starting Reaction Engine... [latest-21342]2021-12-11T22:44:11.737Z <Engine:INFO> Reaction Engine starting [latest-21342]2021-12-11T22:44:11.738Z <Engine:INFO> Checking rule sets... [latest-21342]2021-12-11T22:44:11.747Z <Engine:INFO> Checking rules... [latest-21342]2021-12-11T22:44:11.748Z <Engine:INFO> Data check complete; no corrections.
-
Well, we're looking for InfluxDB messages at the moment. Anything?
-
About InfluxDb I don't see any warn at startup
[latest-21342]2021-12-11T23:21:26.561Z <app:null> Reactor latest-21342-ead7ca9 starting on v16.11.1 [latest-21342]2021-12-11T23:21:26.562Z <app:INFO> Process ID 1; platform linux/x64 #42218 SMP Mon Oct 18 19:16:55 CST 2021; locale (undefined) [latest-21342]2021-12-11T23:21:26.563Z <app:INFO> Basedir /opt/reactor; data in /var/reactor/storage [latest-21342]2021-12-11T23:21:26.563Z <app:INFO> NODE_PATH=/opt/reactor [latest-21342]2021-12-11T23:21:26.566Z <app:INFO> Configured locale (undefined); selected locale(s) en-US.UTF-8 [latest-21342]2021-12-11T23:21:26.588Z <app:INFO> Loaded locale en-US [latest-21342]2021-12-11T23:21:26.597Z <Capabilities:null> Module Capabilities v21333 [latest-21342]2021-12-11T23:21:26.639Z <Plugin:null> Module Plugin v21186 [latest-21342]2021-12-11T23:21:26.644Z <TimerBroker:null> Module TimerBroker v21333 [latest-21342]2021-12-11T23:21:26.646Z <default:INFO> Module Entity v21334 [latest-21342]2021-12-11T23:21:26.650Z <Controller:null> Module Controller v21333 [latest-21342]2021-12-11T23:21:26.650Z <default:null> Module Structure v21338 [latest-21342]2021-12-11T23:21:26.658Z <default:null> Module Ruleset v21096 [latest-21342]2021-12-11T23:21:26.659Z <default:null> Module Rulesets v21096 [latest-21342]2021-12-11T23:21:26.667Z <GlobalExpression:null> Module GlobalExpression v21333 [latest-21342]2021-12-11T23:21:26.679Z <default:null> Module Rule v21337 [latest-21342]2021-12-11T23:21:26.683Z <GlobalReaction:null> Module GlobalReaction v21333 [latest-21342]2021-12-11T23:21:26.684Z <AlertManager:null> Module AlertManager v21333 [latest-21342]2021-12-11T23:21:26.685Z <default:null> Module Engine v21342 [latest-21342]2021-12-11T23:21:26.685Z <default:null> Module httpapi v21333 [latest-21342]2021-12-11T23:21:26.687Z <default:null> Module httpproxy v21333 [latest-21342]2021-12-11T23:21:26.702Z <default:null> Module wsapi v21334 [latest-21342]2021-12-11T23:21:26.703Z <app:NOTICE> Starting Structure... [latest-21342]2021-12-11T23:21:26.740Z <InfluxFeed:null> Module InfluxFeed v21333 [latest-21342]2021-12-11T23:21:26.742Z <Structure:INFO> Structure#1 starting plugin influx (InfluxFeed) [latest-21342]2021-12-11T23:21:26.743Z <Structure:INFO> Structure#1 loading controller interface vera (VeraController) [latest-21342]2021-12-11T23:21:26.752Z <VeraController:null> Module VeraController v21334 [latest-21342]2021-12-11T23:21:26.757Z <Structure:INFO> Structure#1 loading controller interface ezlo (EzloController) [latest-21342]2021-12-11T23:21:26.769Z <EzloController:null> Module EzloController v21324 [latest-21342]2021-12-11T23:21:26.772Z <EzloController:null> EzloController#ezlo created, config { "source": "wss://10.0.4.119:17000", "serial": "90000464" } [latest-21342]2021-12-11T23:21:26.772Z <EzloController:null> EzloController#ezlo instance log level (null) (4) [latest-21342]2021-12-11T23:21:26.773Z <Structure:INFO> Structure#1 loading controller interface groups (DynamicGroupController) [latest-21342]2021-12-11T23:21:26.777Z <DynamicGroupController:null> Module DynamicGroupController v21334 [latest-21342]2021-12-11T23:21:26.779Z <Structure:INFO> Structure#1 loading controller interface weather (OWMWeatherController) [latest-21342]2021-12-11T23:21:26.783Z <OWMWeatherController:null> Module OWMWeatherController v21313 [latest-21342]2021-12-11T23:21:26.785Z <Structure:INFO> Structure#1 loading controller interface reactor_system (SystemController) [latest-21342]2021-12-11T23:21:26.788Z <SystemController:null> Module SystemController v21342 [latest-21342]2021-12-11T23:21:26.790Z <Structure:INFO> Starting controller VeraController#vera [latest-21342]2021-12-11T23:21:26.790Z <VeraController:NOTICE> VeraController#vera starting [latest-21342]2021-12-11T23:21:26.835Z <VeraController:INFO> VeraController#vera loaded mapping ver 21301 rev 1 format 1 notice [latest-21342]2021-12-11T23:21:26.837Z <VeraController:INFO> VeraController: deviceclass room capability sys_group does not provide attribute members [latest-21342]2021-12-11T23:21:26.837Z <VeraController:INFO> VeraController: deviceclass room capability sys_group does not provide attribute empty [latest-21342]2021-12-11T23:21:26.838Z <VeraController:INFO> VeraController: deviceclass vera_system_object capability sys_system does not provide attribute state [latest-21342]2021-12-11T23:21:26.850Z <Structure:INFO> Starting controller EzloController#ezlo [latest-21342]2021-12-11T23:21:26.863Z <EzloController:INFO> EzloController#ezlo device mapping data loaded; checking... [latest-21342]2021-12-11T23:21:26.866Z <EzloController:INFO> EzloController#ezlo performing hub login without cloud authentication (hub.offline.anonymous_access must be enabled) [latest-21342]2021-12-11T23:21:26.867Z <Structure:INFO> Starting controller DynamicGroupController#groups [latest-21342]2021-12-11T23:21:26.869Z <DynamicGroupController:NOTICE> Controller DynamicGroupController#groups is now online. [latest-21342]2021-12-11T23:21:26.870Z <Structure:INFO> Starting controller OWMWeatherController#weather [latest-21342]2021-12-11T23:21:26.896Z <Structure:INFO> Starting controller SystemController#reactor_system [latest-21342]2021-12-11T23:21:26.897Z <SystemController:NOTICE> Controller SystemController#reactor_system is now online. [latest-21342]2021-12-11T23:21:26.921Z <EzloController:INFO> EzloController#ezlo opening hub connection to "90000464" at wss://10.0.4.119:17000 [latest-21342]2021-12-11T23:21:26.922Z <EzloController:NOTICE> EzloController#ezlo connecting via WS to wss://10.0.4.119:17000 [latest-21342]2021-12-11T23:21:26.928Z <app:INFO> Structure running; pausing for controllers' initial ready [latest-21342]2021-12-11T23:21:27.062Z <EzloController:INFO> EzloController#ezlo hub websocket connected (wss://10.0.4.119:17000) [latest-21342]2021-12-11T23:21:27.062Z <EzloController:INFO> EzloController#ezlo hub websocket connected; inventory hub... [latest-21342]2021-12-11T23:21:27.114Z <EzloController:INFO> EzloController#ezlo hub "90000464" is h2.1 (undefined) firmware "2.0.21.1785.1" [latest-21342]2021-12-11T23:21:27.151Z <OWMWeatherController:INFO> OWMWeatherController#weather done; 1 locations, 0 failed [latest-21342]2021-12-11T23:21:27.152Z <OWMWeatherController:NOTICE> Controller OWMWeatherController#weather is now online. [latest-21342]2021-12-11T23:21:27.396Z <VeraController:NOTICE> Controller VeraController#vera is now online.
-
OK. Thanks for uploading the logs and data. It looks like I made an error in the parsing of attribute lists. But, I think there's an easy workaround for you until I get a fix out... just change
select_capabilities
todefault_capabilities
. No other changes needed, I think. -
-
T toggledbits locked this topic on