Read the statement by Michael Teeuw here.
MMM-SystemStats (cpu temp/load, fre ram ...)
-
@lavolp3 said in MMM-SystemStats (cpu temp/load, fre ram ...):
MMM-SystemStats .title
I tried both, that did not work :(
-
How can i change the size of the module? Doesnt work for me in custom.css. When i change width or heigt the module moves outside the display.
-
Hi,
I’ve updated this module to the last version a few days ago. Before the update, it worked perfectly, but now it does not show anything about SystemStats on my smart mirror.
I’ve have not changed the lines for this module on the config.js file. They are the same before the update. This is my config:
{ module: "MMM-SystemStats", position: "top_right", // This can be any of the regions. classes: "small dimmed", // Add your own styling. Optional. config: { updateInterval: "3000", align: "right" // align labels } },What could be wrong with it? Maybe I would have to add something else in this file after the update?
Thanks!
Quique. -
@qu1que don’t know I had the same thing but I had to delete the JS for it to go on, then it didn’t work with the new JS so I managed to get the JS out of the waste bin and it’s back working again but measuring in kelvin.
-
I also had the same problem. I even removed the module, re-installed, but still cant view it.
-
I have the same problem. After the upload, it shows me nothing more
-
i have a solution,
it is only a comma missing in “MMM-SystemStats.js” in line 20baseURLSyslog: 'http://127.0.0.1:8080/syslog', -
Thanks! It works for me, that was the problem.
-
@Babene1 It works for me too, thank you !!
-
@Babene1 - Great work. Did you generate a PR for the module developer?
-
@bhepler it is a new release with the bugfix from MMM-SystemStats available
-

I have a mistake, as shown in the figure.
It was good at first, but then it was. I don’t know why. -
does the Module work on mac?
-
@Stoffbeuteluwe
no
on Raspberry Pi 2B -
@chinesesich Same issue… something new?
-
@Fifin404 @chinesesich The issue seems to be the change in version of Font Awesome icons.
Try changing line 122 in MMM-SystemStats.js
c2.innerHTML = `< i class="fa ${sysData[item].icon} fa-fw"></i>`;to
c2.innerHTML = `< i class="fas ${sysData[item].icon} fa-fw"></i>`;ONLY change the “fa” to “fas”.
The rest can stay the same.
Don’t copy my input! I neede to put in a space for it to be viewable. -
How can you only display individual parameters?
I just want to see “Free memory” for example.
Thank you very much in advance -
@Lordy
if you mean free RAM, try this out in your custom.css.MMM-SystemStats tr { display: none; } .MMM-SystemStats tr:nth-child(3n+0) { display: table-row; }For free disk space it would be
.MMM-SystemStats tr { display: none; } .MMM-SystemStats tr:nth-child(5n+0) { display: table-row; }No guarantees!! I haven’t tried it!!
-
@lavolp3 said in MMM-SystemStats (cpu temp/load, fre ram ...):
.MMM-SystemStats tr {
display: none;
}.MMM-SystemStats tr:nth-child(5n+0) {
display: table-row;
}Thanks, it helped me.
How do I do this with “CPU_TEMP”? -
@Lordy try
tr:nth-child(6n+1)You have 5 children in the table element, which are the 5 table rows.
nth-child counts every “nth” children from 0.
So if you have nth-children(3n+0) it takes the 3rd 6th 9th. Only the 3rd is there so voila.nth-children(6n+1) SHOULD count the 1st, 7th, 13th children, of these only the 1st is available. So, hopefully again, voila.
getDom: function() { var self = this; var wrapper = document.createElement('table'); var sysData = { cpuTemp: { text: 'CPU_TEMP', icon: 'fa-thermometer', }, sysLoad: { text: 'SYS_LOAD', icon: 'fa-tachometer', }, freeMem: { text: 'RAM_FREE', icon: 'fa-microchip', }, upTime: { text: 'UPTIME', icon: 'fa-clock-o', }, freeSpace: { text: 'DISK_FREE', icon: 'fa-hdd-o', }, };
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login