Filesystem check not montired

Issue #845 resolved
Former user created an issue

with the following config the file system check on my Raspberry Pi (arm7 32bit) is not working as expected

check filesystem root_fs with path /
   if space usage > 80% for 5 times within 15 cycles then alert
   if space usage > 99% then stop
   if inode usage > 30000 then alert
   if inode usage > 99% then stop

it results in:

Name root_fs Path /
   Status Not monitored
   Monitoring status Not monitored
   Monitoring mode active   
   On reboot start
   Data collected Sat, 14 Sep 2019 11:15:51

any help is appreciated

Comments (3)

  1. Tildeslash repo owner

    The monitoring was most probably disable because one of the “stop” rules were true (the stop action stops the service and disables its monitoring).

    You can enable the monitoring again when the problem was resolved:

    monit monitor root_fs
    

    You can check the monit log or run monit in debug mode to trace actions:

    monit -vI
    

  2. Log in to comment