February 17, 20197 yr Could we have an option of using IPMI plug for temps as System Temps plugin doesnt work well with my Motherboard X9DR3, along with options for temp per cpu package for dual CPU systems etc?
February 17, 20197 yr The IPMI plugin would need to add support for the dashboard display. if ($('#mb-temp').length) { var temp = $('span#temp').text(); var unit = temp.indexOf('C')>0 ? 'C' : 'F'; temp = temp.split(unit); if (temp[0]) $('#cpu-temp').html('Temperature: '+temp[0]+unit); if (temp[1]) $('#mb-temp').html('Temperature: '+temp[1]+unit); } The above code extract comes from the System Temp plugin. It checks the presence of the field 'mb-temp' and puts the temperature readings in the fields 'cpu-temp' and 'mb-temp' which get displayed on the dashboard page.
Archived
This topic is now archived and is closed to further replies.