in reply to disk check using perl

I highly recommend Nagios for system monitoring. Our setup monitors a variety of parameters (including free disk space) on about forty servers, as well as the numerous installations of the web application that I wrote and currently support for a variety of clients.

Some problems just send me E-Mail, and other problems page my Blackberry 24/7.

Way better than anything I could written myself, and very flexible.

Alex / talexb / Toronto

"Groklaw is the open-source mentality applied to legal research" ~ Linus Torvalds

Replies are listed 'Best First'.
Re^2: disk check using perl
by steadybompipi (Novice) on Dec 14, 2007 at 22:46 UTC
    Thanks everyone, but actually, i just need a simple script without using any module like use Filesys::Df; maybe something like : df = `df -k`; percentage =~ /something something/ if percentage > 90; send mail Well, I prefer to use script then download software for the monitoring as my side need alot of approval to do that. cheers