Adding a temperature panel in the Overview dashboard #3430
tesla2021a
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I always wanted to see the inside temperature in regard to the outside temperature anytime the car is awake. So I added it to the Overview dashboard. If you want to do the same, simple copy the temperature panel from any drives and paste it into the Overview dashboard (much easier than recreating a panel from scratch lol). Then, replace its current code with the following code:
Of course, if you're running off a Docker, you'll need to modify the config so it can be permanent (until the next pull that is). To do so, do the following (assuming running on a RaspberryPi in the /home/pi/teslamate directory, adjust for your installation particularity).
mkdir cd ~/teslamate/tmp
cd ~/teslamate
sudo docker cp teslamate-grafana-1:/etc/grafana/provisioning/dashboards/dashboards.yml tmp/
sudo nano tmp/dashboards.yml
Add
allowUiUpdates: true
right before the threeoptions:
lines (ps, sudo is required above since the file was copied while sudo'ed)sudo docker cp tmp/dashboards.yml teslamate-grafana-1:/etc/grafana/provisioning/dashboards/dashboards.yml
sudo docker restart teslamate-grafana-1
Now when you save the panel, you won't get that error that the panel is read only and it will always be there until you pull a new docker image.
Beta Was this translation helpful? Give feedback.
All reactions