January 26, 201511 yr /usr/local/emhttp/plugins/dynamix/scripts/monitor currently contains the following code: // process disk SMART notifications. Give messages only when changes occur! unset($codes); exec("awk '$1~/(5|187|188|197|198)/{print $1,$10,$2}' /var/local/emhttp/smart/{$disk['name']}", $codes); This monitors any SMART parameter containing a "5". This caused a problem for me because some of my drives report on "195 Hardware_ECC_Recovered" which can change frequently. I think what was intended was something like: // process disk SMART notifications. Give messages only when changes occur! unset($codes); exec("awk '$1~/(^5$|187|188|197|198)/{print $1,$10,$2}' /var/local/emhttp/smart/{$disk['name']}", $codes); which will match only attribute "5" among the others in the list. John
January 26, 201511 yr Fix was posted here:http://lime-technology.com/forum/index.php?topic=37817.msg350059#msg350059
Archived
This topic is now archived and is closed to further replies.