Hello Lars, you wrote: [...] > I prepared a change to the sensors_ plugin, that should fix the issue: > https://github.com/munin-monitoring/munin/pull/1246 > I attached the changed plugin for your convenience and to avoid forcing you > into > a non-free service. > > Please test, whether the changed plugin works for you.
I tested the attached script. First, it resulted in several error messages. I realized that in the first line of the script the '!' was missing, so the script was executed by the default shell instead of perl. After correcting this it worked as expected: # munin-run --servicedir . sensors_volt volt1.value 1.10 volt2.value 1.02 volt3.value 3.38 volt4.value 3.38 volt5.value 1.01 volt6.value 1.51 volt7.value 1.09 volt8.value 3.39 volt9.value 3.26 volt10.value 0.000 # munin-run --servicedir . sensors_volt volt1.value 0.88 volt2.value 1.02 volt3.value 3.38 volt4.value 3.38 volt5.value 1.01 volt6.value 1.51 volt7.value 1.09 volt8.value 3.39 volt9.value 3.26 volt10.value 0.000 The 'volt1' line stayed there, it reported values below 1, and the output from 'config' stayed stable as well. Fixed! thank you, Andreas