Read the statement by Michael Teeuw here.
MMM-SystemMonitor
-
That’s fixed it.
Module in config.js
units: 'config.units'
config.js before modules
was
units: 'metric',
Changed it to
units: "metric",
Quite how Free Memory can be 128% I’ve no idea, that’s for another day.
For now, it’s working. Thank you! -
@Richard238 cool. Single or double quotes don’t matter as long as they are matched
Be careful on quotes and copying from the forum
If the quotes are curved, they are word processing style and Javascript doesn’t understand them
" or ’If they are vertical, they are good
" or '
-
@sdetweil said in MMM-SystemMonitor:
Single or double quotes don’t matter as long as they are matched
JS lesson #1 :-)
-
I’m new to MM and just been putting together my board over the last week.
I’ve used your module and think it’s great.
One thing I did find is that your default way of grabbing diskspace had the device hard coded.
I made this change to node_helper.js:
async.apply(exec, "df -h /|grep dev|awk '{print $4}'"),
That looked for the root partition and was able to then return the correct value for me.
-
@mebster5 submit that as a pr