- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: file system monitoring
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2004 11:23 PM
тАО06-06-2004 11:23 PM
file system monitoring
what i want is to monitor all the fs in a box, then set a limit of 70% threshold. once an FS reach 70% or more, it will automatically inform me via email... or any other means of alert..
contents of the alert will be the system name, the FS that is full, etc...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2004 11:32 PM
тАО06-06-2004 11:32 PM
Re: file system monitoring
yes, You can either use a cronjob or an entry in /etc/inittab with a looping script.
Alternativeley, you may use some tools like for example nagios, which are able to monitor many more aspects of the computer, send the results of the monitoring to a central server, support a GUI and offer several ways to inform you about problems of several grades of seriousness.
This may bo a lot mor work to install and configure, but it pays out, if you can use more of its features.
Bye
Ralf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2004 11:36 PM
тАО06-06-2004 11:36 PM
Re: file system monitoring
Why don't you try HP-Openview NNM
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2004 11:39 PM
тАО06-06-2004 11:39 PM
Re: file system monitoring
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=85993
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2004 11:39 PM
тАО06-06-2004 11:39 PM
Re: file system monitoring
Each time that root user enter into the machine a very simple procedure run into .profile:
WARNING_PERC=90
echo "Verifying File System spaces ......... \c"
BDF=`bdf|grep $WARNING_PERC%|wc -l`
if [ $BDF -eq 0 ]
then
echo "[Ok]"
else
echo "[File System Warning]"
fi
A similar checking will be done by a cronned task and sending an email via mailx or sendmail.
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 12:32 AM
тАО06-07-2004 12:32 AM
Re: file system monitoring
in attachment a good script, just insert the mail address.
You can launch it as a cronjob too.
HTH.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 12:33 AM
тАО06-07-2004 12:33 AM
Re: file system monitoring
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 02:11 AM
тАО06-07-2004 02:11 AM
Re: file system monitoring
bdf | awk 'split($5,a,"%") && a[1] > 70 {print $5, $6}' | mailx -s "Diskspace Alert: `hostname`" email@urcompany.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 02:30 AM
тАО06-07-2004 02:30 AM
Re: file system monitoring
you cannot solely rely on percentages, can you? If you have a 200GB file system with 1% free space you have still room enough to play around. On the other hand if you have a 100MB file system with 10% free space then you're in tight shoes.
Just my 2 cents
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 02:31 AM
тАО06-07-2004 02:31 AM
Re: file system monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 02:46 AM
тАО06-07-2004 02:46 AM
Re: file system monitoring
www.bb4.org
There is a free version (which I use)
and a "pro" version that you have to buy.