- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: System resource 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
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
01-05-2004 02:44 AM
01-05-2004 02:44 AM
I'm running 10.20 and our year end processing is running into a bottle neck somewhere.
I'm looking at "top" and have read descriptions of what I'm looking at, but am not sure what's good or bad. (Other than obvious stuff. Like load and idle.) I also have some instructions for using vmstat and iostat. (All info I have is from "HP Certified" by Rafeeq Ur Rehman)
Which statistics should I be focusing on? How would you recommend I monitor these?
Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 02:47 AM
01-05-2004 02:47 AM
Re: System resource monitoring
see if you have glance plus monitor on your system command gpm gives a visual graphical display of what is happening. If you do not have it you can download an evaluation 60 day copy
http://www.software.hp.com/
you can also search the forum using the search box at the top of this page as this has been covered many many times
:-) John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 02:52 AM
01-05-2004 02:52 AM
Re: System resource monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 03:28 AM
01-05-2004 03:28 AM
Re: System resource monitoring
You can also get a trial version of sarcheck from www.sarcheck.com which sets up a data collector in the cron using sar and you can run to get formatted output report which is really discriptive and useful.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 06:10 AM
01-05-2004 06:10 AM
Solution2. MeasureWare/PerfView (two products). You can download trials as described above, but this is complicated.
3. Set up automatic sar data collection and review sar outputs - all of them. go through man sar.
Here is how you set up sar data collection. It takes some disk space:
1. To set it up:
Start sar:
cd /root/doc
crontab -l > crontab.mmdd
vi crontab.mmdd
add:
0 * * * * /usr/lib/sa/sa1 600 6
crontab < cron.mmdd
crontab -l
mkdir /var/adm/sa
2. To use it:
a. The sar collector puts data in:
/var/adm/sa/
in files named: saNN
sa01
sa02
where NN is the day of the month on which the data was collected.
abramsd@adedd09p:/var/adm/sa$ ll
total 294718
-rw-r--r-- 1 root sys 5810240 Oct 1 23:50 sa01
-rw-r--r-- 1 root sys 6243840 Oct 2 23:50 sa02
...
-rw-r--r-- 1 root sys 3409920 Sep 14 00:50 sa13
-rw-r--r-- 1 root sys 780480 Oct 14 23:50 sa14
b. To find out table space usage on ANY system right now:
sar -v 5 5
c. To get a 24 hour history of today:
sar -v
d. To get a 24 hour history of October 8:
sar -v -f /var/adm/sa/sa08
3. Maintenance:
a. The files in /var/adm/sa write over after 30 days:
October 1 was written on sa01
November 1 will overwrite sa01
b. You might want to put something in place to wipe out 2 week old files:
find /var/adm/sa -mtime +15 -exec rm {} \;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 06:17 AM
01-05-2004 06:17 AM
Re: System resource monitoring
Attached.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 04:05 PM
01-05-2004 04:05 PM
Re: System resource monitoring
try to get glanceplus. This will give graphical representation and very easy to interpret
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2004 02:08 AM
01-06-2004 02:08 AM
Re: System resource monitoring
00 * * * * /root/SCRIPTS/monitor.sh > /dev/null 2>&1
Month=`/usr/bin/date +%m`
Day=`/usr/bin/date +%d`
Year=`/usr/bin/date +%y`
Hour=`/usr/bin/date +%H`
Minute=`/usr/bin/date +%M`
LOGFILE=/root/LOG/SAR/$Year$Month$Day-$Hour$Minute.sar
/usr/sbin/sar -A -o $LOGFILE 60 29 > /dev/nul &
This allows hourly breakdown or summation of daily logs.
I personnally check the output file daily.
Tim