- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How can I monitor all disk,cpu,io,memory activ...
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
06-20-2000 10:29 PM
06-20-2000 10:29 PM
Many Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2000 11:01 PM
06-20-2000 11:01 PM
Re: How can I monitor all disk,cpu,io,memory activities at some period of time ?
There is a program and that is called:
HP OpenView GlancePlus and
Glanceplus Pak 2000.
You can find this information on:
http://www.openview.hp.com/products/glanceplus/
You need a codeword for this program but
there is trial version on the CD:
HP UX Application Software (cd4)
Have a nice day!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2000 11:05 PM
06-20-2000 11:05 PM
Re: How can I monitor all disk,cpu,io,memory activities at some period of time ?
Do you have another method to monitor all of this events ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2000 11:27 PM
06-20-2000 11:27 PM
SolutionYou can also use this script with your cron.
#!/sbin/sh
DATE=`date +%Y%m%d`
LOGFILE=/tmp/vmslog.$DATE
touch $LOGFILE
echo "VMSTAT" >> $logfile
echo "`date +%H:%M` ` vmstat 5 5 |tail -1` " >> $LOGFILE
echo "SAR" >> $LOGFILE
echo "`date +%H:%M` `sar 5 5|tail -1 `" >> $LOGFILE
echo "SAR -B" >> $LOGFILE
echo "`date +%H:%M` `sar -b 5 5|tail -1 `" >> $LOGFILE
echo "SAR -M" >> $LOGFILE
echo "`date +%H:%M` `sar -M 5 5|tail -1 `" >> $LOGFILE
echo "SAR -D" >> $LOGFILE
echo "`date +%H:%M` `sar -d 5 5|tail -1 `" >> $LOGFILE
echo "NEW UPDATE" >> $LOGFILE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 05:41 AM
06-21-2000 05:41 AM
Re: How can I monitor all disk,cpu,io,memory activities at some period of time ?
sar -A
This will keep a log of the system performance, polled every
- , where
- is the 2 digits of the day of the month. (ie, 01-31). Generally, a 300 second (5 minute) interval is recommended.
You can embed this in a shell script and/or a cron job to suit your needs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2000 07:24 AM
07-06-2000 07:24 AM
Re: How can I monitor all disk,cpu,io,memory activities at some period of time ?
It will give you real time readings of the following
CPU TTY PID USERNAME PRI NI SIZE RES STATE TIME %WCPU %CPU COMMAND