- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance Retrieval in HP-UX
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-24-2007 02:09 PM
06-24-2007 02:09 PM
Would like to seek your advise. If i were to retrieve HP-UX performance statistic for 2 weeks... what is the comprehensive way to gather this information? if can, i don't want to run glance and top everyday. Is it possible for me to run the cron job? or how... your advise are highly appreciated. Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2007 02:35 PM
06-24-2007 02:35 PM
SolutionThe free one is 'sar'. Peruse the 'sar' man page on how to set this up to run and gather your statistics automatically.
The one you have to pay for is MeasureWare, or I believe the new name is OpenView Performance Agent. If you have this installed and running, then it is gathering data for you already. You can extract this data via the 'extract' command (see the man page for more information) or via PerfView if you purchased it. The extract command allows you to extract the data and then make graphs with other tools (like Excel).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2007 03:31 PM
06-24-2007 03:31 PM
Re: Performance Retrieval in HP-UX
Thanks for the reply.
Can we get the information with sar as comprehensive as measureware. I last time tried sar -v 2 5. Just wondering do I have to run few commands using sar to get the output. Which one do you prefer as the hp-ux expert personal view?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2007 03:52 PM
06-24-2007 03:52 PM
Re: Performance Retrieval in HP-UX
If you don't have PerfView, the extract command can give you a lot of data to review and you can build your own graphs from there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2007 06:36 PM
06-24-2007 06:36 PM
Re: Performance Retrieval in HP-UX
Thank you so much for your advise. :) Hope to see you in my next question..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 04:51 PM
06-26-2007 04:51 PM
Re: Performance Retrieval in HP-UX
I've a following question about the performance monitoring tools. If we were to run the measureware or perfview, will it affect the memory utilisation. since we have some restriction in term of memory limitation. will it take up the memory usage? hope to hear your clarification. thank you in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2007 05:02 AM
06-28-2007 05:02 AM
Re: Performance Retrieval in HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2007 06:15 AM
06-28-2007 06:15 AM
Re: Performance Retrieval in HP-UX
There is a phenomenon called the "observer effect," which states (very basically) that the act of observing something will effect that which is being observed. Have a read through this web page, specifically the "Use in Information Technology" section.
http://en.wikipedia.org/wiki/Observer_effect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2007 06:17 AM
06-28-2007 06:17 AM
Re: Performance Retrieval in HP-UX
This toolset has a vastly lower impact than measurewere. I got it from HP and fixed some bugs.
http://www.hpux.ws/system.perf.sh
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
06-28-2007 06:23 AM
06-28-2007 06:23 AM
Re: Performance Retrieval in HP-UX
Root cron:
# performance
55 23 * * 1-5 /opt/perf/bin/extract -xp -r /home/gwild/zgbltemplate -g -b today 7:00 -e today 18:00 -f stdout | /bin/mailx -s 'IPR performance report' sysadm >/dev/null 2>&1
# cat /home/gwild/zgbltemplate
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_CPU_SYS_MODE_UTIL
GBL_CPU_USER_MODE_UTIL
GBL_CPU_SYSCALL_UTIL
GBL_CPU_INTERRUPT_UTIL
GBL_PRI_QUEUE
GBL_CPU_CSWITCH_UTIL
GBL_SWAP_SPACE_UTIL
GBL_DISK_UTIL_PEAK
GBL_DISK_SUBSYSTEM_QUEUE
GBL_MEM_UTIL
GBL_MEM_CACHE_HIT_PCT
GBL_MEM_PAGEOUT_RATE
GBL_MEM_SWAPOUT_RATE
GBL_MEM_QUEUE
GBL_NET_PACKET_RATE
GBL_NET_OUTQUEUE
GBL_NETWORK_SUBSYSTEM_QUEUE
Rgds...Geoff