You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you use special characters in the 'shelly_plug_http_password' field, data from the Shelly plug will not be available to the Grafana Power Consumption dashboard.
Note #1: It does not matter where in the password the special character(s) are located.
Note #2: 'pihole_password' IS being escaped properly for special characters.
Steps to replicate:
Set password in the Shelly Plug's interface as: $password
Re https://github.com/geerlingguy/internet-pi/blob/master/example.config.yml#L25
When you use special characters in the 'shelly_plug_http_password' field, data from the Shelly plug will not be available to the Grafana Power Consumption dashboard.
Note #1: It does not matter where in the password the special character(s) are located.
Note #2: 'pihole_password' IS being escaped properly for special characters.
Steps to replicate:
Testing with curl confirms data is available from the Shelly Plug with escaped characters in password.
curl http://shellylogin:$password@shelly.plug.ip.address/meter/0
Result: "401 Unauthorized"
curl http://shellylogin:\$password@shelly.plug.ip.address/meter/0
Result: {"power":3.23,"overpower":0.00,"is_valid":true,"timestamp":1635436041,"counters":[2.995, 2.991, 2.962],"total":23708}
(edited only to remove a redundant comment)
The text was updated successfully, but these errors were encountered: