- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- steps to determine the system performance?
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-28-2005 10:05 PM
06-28-2005 10:05 PM
steps to determine the system performance?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:08 PM
06-28-2005 10:08 PM
Re: steps to determine the system performance?
refer to this docID, UPERFKBAN00000726:
http://www1.itrc.hp.com/service/cki/search.do?category=c0&mode=id&searchString=UPERFKBAN00000726&searchCrit=exactphrase&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&search.x=24&search.y=10
or docID, KBRC00000947:
http://www1.itrc.hp.com/service/cki/search.do?category=c0&mode=id&searchString=KBRC00000947&searchCrit=exactphrase&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&search.x=24&search.y=9
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:17 PM
06-28-2005 10:17 PM
Re: steps to determine the system performance?
sar = system activity report. Format:
sar x y where x = interval in seconds and y = number of reports.
E.g. sar 2 5 will produce 5 reports at 2 second intervals.
vmstat = virtual memory performance. Format is the same as sar.
iostat = input output statistics. Format is the same as sar.
top - show the processes that are taking up most of the processor time.
If you want to spend money on something more sophisticated, glance has a good reputation.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:18 PM
06-28-2005 10:18 PM
Re: steps to determine the system performance?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:19 PM
06-28-2005 10:19 PM
Re: steps to determine the system performance?
Thanks for the link.. but i am not able to open that link.
error:
technical knowledge base - no results found
Note: We're sorry but your search produced 0 results
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:27 PM
06-28-2005 10:27 PM
Re: steps to determine the system performance?
Thanks for the information.. can you please provide more information, the limit values for sar/vmstat/iostat
for example
*************
In solaris
sar â g 2 10
â SunOS host1 5.8 Generic_108528-22 sun4u 09/01/03
â 12:32:04 pgout/s ppgout/s pgfree/s pgscan/s %ufs_ipf
12:32:15 307.42 679.68 674.30 78.29 0.00
12:32:25 393.52 788.89 777.87 1.76 0.00
12:32:36 344.87 875.09 843.66 17.63 0.00
â Average 348.64 781.05 765.14 32.57 0.00
If page scan = 0 : ALL Ok
If page scan > 0 & < 100 : memory is use â no problem
If page scan > 100 & < 1000 : more me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:33 PM
06-28-2005 10:33 PM
Re: steps to determine the system performance?
i have no problem accessing it from the Americas / Asia Pacific forum.
or u may like to search it at the technical knowledge base:
http://www1.itrc.hp.com/service/cki/enterService.do
based on the 2 docID i sent. if not search by the title, Introduction to Performance Tuning and System Performance Tuning Guide.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:35 PM
06-28-2005 10:35 PM
Re: steps to determine the system performance?
vmstat - the final column shows idle vm. 100 is the ideal figure. It's been said many times on this forum - your system shouldn't be swapping at all. swapinfo -tam is another useful tool for monitoring vm.
iostat - disc usage statistics. bps = kilobytes transferred per second, sps = number of seeks per second, msps = milliseconds per average seek. This will help to identify an overloaded disc.
Mark