If you have root access to your Vera, you can login as “root”, and “df -h” to see the Vera disk space usage.
NOTE: This is a major deal when it comes to upgrades since the /overlay partition has to have enough disk space for the upgrade to succeed.
I decided to keep an eye on it, especially the Vera log directory /tmp/log/cmh since it takes a LOT of disk space and fills up quickly with a LOT of devices.
My first approach was to move the log files to a USB stick. It was still filling up regularly. Vera compresses the logs, keeps under the limit, but YOU see it as sluggishness and unreliability (my feelings on this).
I would simply DELETE the LuaUPnP.log file (the big offender) and *.gz files periodically taking my Vera /tmp/log/cmh partition to about 8% used (it was always 100% when I checked).
I decided to create a script to automate this.
cd /root
vi rm_logs.sh and press “i” to go into insert mode.
add the following three lines:
rm /tmp/log/cmh/LuaUPnP.log
rm /tmp/log/cmh/*.gz
reboot
save the file (esc :wq!)
chmod 777 rm_logs.sh
Next add the following line to cron:
crontab -e (go to the bottom, and press “i” to insert)
0 0 * * * /root/rm_logs.sh
save the crontab (esc :wq!)
NOTE: You will want to consider hard before doing this. If keeping the log files past 24hrs is important to you (or Vera support), do not try this!
Waiting on my Vera Plus in hopes of a faster controller with more disk/memory. We will see.