- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Monitoring tool
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
Forums
Discussions
Discussions
Discussions
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
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
10-20-2005 01:29 AM
10-20-2005 01:29 AM
Monitoring tool
are monitoring - tools from HP available.
Like: mail me when the filesystem is 98 % full.
Thanks
Ralf
diagmon / stm / resmon / glanc-plus are well known
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 01:32 AM
10-20-2005 01:32 AM
Re: Monitoring tool
It gives a web display of the status of the system - in the case of disc space, green would indicate acceptable, yellow warning, red panic. In your case, panic would be triggered at 98% and you might want warning at 95%.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 01:33 AM
10-20-2005 01:33 AM
Re: Monitoring tool
http://h21007.www2.hp.com/dspp/dld/dld_DownloadsListingPage_IDX/1,2381,11169,00.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 01:41 AM
10-20-2005 01:41 AM
Re: Monitoring tool
I'm not sure what your budget is for this, but HP offers an entire HP Openview suite of products.
http://welcome.hp.com/country/us/en/prodserv/software.html
Dwyane
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 02:18 AM
10-20-2005 02:18 AM
Re: Monitoring tool
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 02:26 AM
10-20-2005 02:26 AM
Re: Monitoring tool
www.nagios.org/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 02:27 AM
10-20-2005 02:27 AM
Re: Monitoring tool
script1.sh
-------------------------------------------
#!/usr/bin/ksh
list=`bdf|xargs`
var2=$1
func1 ()
{
var1=$#
shift 6
while true
do
if [ $var1 -gt 8 ]
then
var3=`echo $6 | cut -d "%" -f 1`
if [ $var3 -gt $var2 ]
then
echo "$7 $6 This FileSystem is Overloaded"
shift 6
let var1=$var1-6
else
shift 6
let var1=$var1-6
fi
else
exit
fi
done
}
func1 $list
---------------------------------------------
# chmod +x script1.sh
# ./script.sh 98
This will give you the desired output.
Also you will have add to script to get the email of the output that this it displays.
Perl provided above seems to be very concise. :)
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 02:55 AM
10-20-2005 02:55 AM
Re: Monitoring tool
If you are looking for professional products in the market, big brother is one such. Another
product which we use across our entire foot print is patrol software from best1 I think. This is very good tool where you can define filesystem threshold and alert by email and page. various methods of alerting is there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 03:01 AM
10-20-2005 03:01 AM
Re: Monitoring tool
thanks for the script. But it dont work.
Different errors in func etc.
an you check it ?
Thanks Ralf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 10:32 AM
10-20-2005 10:32 AM
Re: Monitoring tool
See http://www.docs.hp.com/hpux/onlinedocs/B7609-90022/B7609-90022.html
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:05 AM
10-20-2005 11:05 AM
Re: Monitoring tool
Here is a working script.
#!/usr/bin/sh
#Script to email the filesystem Utilization
#/home/scripts/bdfoutput
bdf | awk '{ print $5}' | grep ^9
if [ $? -eq 0 ]
then
/usr/bin/bdf | /usr/bin/awk '{ if ($5 >= 90 ) print ( $5,$6 ) }' > /tmp/bdfoutput
/usr/bin/mailx -s bdf abc@xyz.com < /tmp/bdfoutput
fi
The above script will get mail you the output of filesystems which is above 90% used.
add the following to the crontab.
# every 20 minutes to Check BDF status and email if above 90% used.
00,20,59 * * * * /home/scripts/bdfoutput
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 05:26 PM
10-20-2005 05:26 PM
Re: Monitoring tool
since BigBrother isn't really free for professional. They use an odd lisence called BTF (better than free), there is an new free monitoring software called Hobbit.
You can find it at http://sourceforge.net/projects/hobbitmon/
There you can download the source. I am running it at home at HP-UX 11.11
Regards
Lars
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 05:57 PM
10-20-2005 05:57 PM
Re: Monitoring tool
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=20596
ITRC Search results:
http://www2.itrc.hp.com/service/james/search.do?todo=search&admit=-1335382922+1129874090265+28353475&searchtext=Monitoring+file+system&from=forums&origin=0&submit.x=0&wpa=forums1.itrc.hp.com%3A80&submit.y=0&searchcategory=ALL&hpl=1&searchcriteria=allwords&rn=25&source=7000&presort=rank&chkServStor=on&esc=us.support.itrc.hp.com
-Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 08:54 PM
10-20-2005 08:54 PM
Re: Monitoring tool
you can use this simple command:
# Show mount points over PCT
bdf|awk -v PCT=90 'NR==1||substr($5,1,index($5,"%")-1)+0>=PCT'|mail yourSEA@hp.com
HTH,
Art