Replies: 4 comments 17 replies
-
Thanks @hulkster ! I updated as well, to test it out. The main breaking change is with the Powerwall energy flow animation. It is showing a "white" background instead of "clear". I need to investigate why this is happening. I haven't spotted any other issues. Another user reported doing a manual install and getting something similar (here #363) so this might have helped troubleshoot that issue as well. Based on another user having telegraf issues, I also upgraded that to the latest and it seems to be working well. If I can fix the animation, I would propose looking at the upgrades for both ( telegraf:
image: telegraf:1.28.2
container_name: telegraf
hostname: telegraf
restart: always
user: "1000:1000"
command: [
"telegraf",
"--config",
"/etc/telegraf/telegraf.conf",
"--config-directory",
"/etc/telegraf/telegraf.d"
]
volumes:
- type: bind
source: ./telegraf.conf
target: /etc/telegraf/telegraf.conf
read_only: true
- type: bind
source: ./telegraf.local
target: /etc/telegraf/telegraf.d/local.conf
read_only: true
depends_on:
- influxdb
- pypowerwall
grafana:
image: grafana/grafana:9.4.14-ubuntu
container_name: grafana
hostname: grafana
restart: always
user: "${GRAFANAUSER}"
volumes:
- type: bind
source: ./grafana
target: /var/lib/grafana
ports:
- target: 9000
published: 9000
mode: host
env_file:
- grafana.env
depends_on:
- influxdb @mcbirse Should we update the |
Beta Was this translation helpful? Give feedback.
-
Although this discussion is old, thought I could update all on my experiences with the Powerwall Dashboard using more recent Grafana versions. I have used: I have since recreated the ‘Current State’ panel using the new Canvas panel plug-in and it is operating fine. The main reason I did this was to create canvas panels depicting my solar array (I have microinverters & wanted to see each panel’s output). Canvas still has its quirks in the design area, but the panels are working fine for the most part. Need to play with the experimental Pan & Zoom, as the panels do not scale well for phones & tablets. n.b.: Since I have Enphase microinverters and NOT a Tesla invertor, I have not tested the sting panels! Next up is making a canvas panel replicating the Power Flow animation panel. I use a reverse proxy to access the panel outside of home, and the dashboard cannot pass on the animation remotely. |
Beta Was this translation helpful? Give feedback.
-
I futzed around with this a bit more and didn't make much progress. The text centering issue mentioned in the OP would require some work, so I just pushed to the latest 9.x release (9.4.17) and everything seems to work fine. I.e. I took the lazy approach since eventually smart folks will upgrade the dashboard to work with 10/11.x and then I'll use that as a starting template match what I have. A couple of screenshots below from my customized dashboard showing how things look for the first 9 months and my peak day so far. BTW, among the myriad of things that Powerwall is handy for is generating monthly stats to feed into my spreadsheet to compare actual output to expected output - see attached spreadsheet. Any comments/suggestions on that appreciated BTW. |
Beta Was this translation helpful? Give feedback.
-
@SCHibbard thanks for this updated current state panel. I got the Powerwall Dashboard working on my Unraid NAS and the Grafana version available in community apps is v11.1.0. v11 was not happy with the deprecated boom table plugin and threw me errors until I added a variable to bypass the deprecation for now but that won't work past v11, the JSON you provided allowed me to get rid of the boom table from the dashboard. |
Beta Was this translation helpful? Give feedback.
-
I was fiddling with my dashboard and stumbled across a name/value spacing issue that is fixed is Grafana 9.2.0 - links to discussion and resolution.
This motivated me to try a more recent version of Grafana by editing powerwall.yml and re-running setup.sh. The current version is 9.1.2 and I initially went all the way to the latest which is 10.1.5. However, this introduces a really annoying issue where the panel title is not centered ... and there doesn't appear to be a work-around for that yet - discussion here.
That thread says that version 9.4.14 is the last version where centering worked. So I tried that and everything seemed to work well. So just posting an FYI in case others go down this path.
P.S. Attached is a picture of my dashboard (I'm solar-only) and which (after a bit of work) all fits nicely on 4K screen.
Beta Was this translation helpful? Give feedback.
All reactions