- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- need CPU/Memory Utilization
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
07-07-2009 05:47 AM
07-07-2009 05:47 AM
need CPU/Memory Utilization
I need to get the CPU/Memory Utilization for a server (Lclass) running 11.0 for the last one week. what would be the easiet and quickest way to do this? Please help.
Thanks
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 05:50 AM
07-07-2009 05:50 AM
Re: need CPU/Memory Utilization
sar is a great tool for this.
http://www.hpux.ws/?p=6
You can pull some good stuff out of the scripts there.
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
07-07-2009 05:54 AM
07-07-2009 05:54 AM
Re: need CPU/Memory Utilization
Using the utility extract, you can pull all sorts of different data out of this system. Use of extract needs a bit getting used to but man page should be a good point to start playing with it.
If you do not have these files, there is no way that I know that you can have the data for the past week. But check root's crontab and see if sa1 and sa2 are scheduled to run periodically, which may help.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 06:20 AM
07-07-2009 06:20 AM
Re: need CPU/Memory Utilization
Check on ur system u have set the path for sar and crontab entry for it using crontab -l.
/var/adm/sa/saxx
where xx is the date
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 06:42 AM
07-07-2009 06:42 AM
Re: need CPU/Memory Utilization
Thanks
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 06:50 AM
07-07-2009 06:50 AM
Re: need CPU/Memory Utilization
1.You can Use GLANCE, Glance is fantastic.
2. you can use EXTRACT which will give the data
3. Perfview
etc
Regards
Sanjeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 07:03 AM
07-07-2009 07:03 AM
Re: need CPU/Memory Utilization
Sanjeev is right. Here is the procedure how you can extract your data.
Frist Create a template file at /tmp/moni
root # more moni
REPORT "MWA Export on !SYSTEM_ID"
FORMAT ASCII
HEADINGS ON
SEPARATOR="|"
SUMMARY=60
MISSING=0
DATA TYPE GLOBAL
YEAR
DATE
TIME
GBL_CPU_TOTAL_UTIL
GBL_MEM_UTIL
GBL_SWAP_SPACE_UTIL
GBL_MEM_CACHE_HIT_PCT
GBL_DISK_UTIL_PEAK
GBL_FS_SPACE_UTIL_PEAK
then do
# cd /opt/perf/bin
# ./extract -xp -r /tmp/moni -g -b today 16:02 -e today 16:08 -f stdout
man page of extract says.
extract -xt [d|w|m|y -offset] [-v][-gapkdzcntuy]
[-l
[-b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 07:05 AM
07-07-2009 07:05 AM
Re: need CPU/Memory Utilization
u can check the cpu utilsation by using below command
sar -u -f /var/adm/sa/saxx
where xx is date
check tha man pages for sar for other option like mem,disk etc.
Regards
prashant