Hello,
I have an advanced ssh sensor that reads in all filesystems and checks if they are readonly. however if a new filesystem is added I need to adjust the thresholds manually which defeats the entire purpose of making the sensor generic. Is there an option in the XML to set a threshhold for upper limit since anything that is not 0 should give an error? Right now I just create a new channel for each filesystem and output 0 or 1. then I need to go to edit channel> enable limits > enter 0 in the upper limit. Can this be avoided and make a fully automatic sensor?
my xml output looks like this at the moment:
<prtg> <result> <channel>FS: /</channel> <value>0</value> </result> <result> <channel>FS: /u01</channel> <value>0</value> </result> <result> <channel>FS: /u02</channel> <value>0</value> </result> <result> <channel>FS: /u03</channel> <value>0</value> </result> <result> <channel>FS: /u04</channel> <value>0</value> </result> <result> <channel>FS: /u05</channel> <value>0</value> </result> <result> <channel>FS: /u06</channel> <value>0</value> </result> </prtg>
Add comment