- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 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
02-23-2004 07:01 PM - last edited on 08-24-2014 06:53 PM by Lisa198503
02-23-2004 07:01 PM - last edited on 08-24-2014 06:53 PM by Lisa198503
system performance
When I make a sar I can see that there is a %wio bigger than 50% in many cases . I wuold like to know which processes is causing this %wio .. How can I know which process is accessing to a disk and how can monitor the behauviour of a process:
hpuxserv:/> swapinfo -t
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 4194304 935920 3258384 22% 0 - 1 /dev/vg00/lvol2
reserve - 2180540 -2180540
memory 1387556 491548 896008 35%
total 5581860 3608008 1973852 65% - 0 -
08:29:58 %usr %sys %wio %idle
08:30:58 15 17 16 53
08:31:58 9 11 33 47
08:32:58 9 9 27 55
08:33:58 9 8 34 48
08:34:58 10 9 25 56
08:35:58 15 14 23 48
08:36:58 18 20 36 26
08:37:58 6 7 30 57
08:38:58 7 9 11 73
08:39:58 17 15 35 33
08:40:58 11 9 26 54
08:41:58 13 10 16 61
08:42:58 14 11 28 47
08:43:58 17 11 21 51
08:44:58 23 12 25 40
08:45:58 23 15 21 42
08:46:58 21 14 20 45
08:47:58 22 19 35 24
08:48:58 25 18 41 16
08:49:58 27 22 31 20
08:50:58 24 24 43 9
08:51:58 13 13 52 23
08:52:58 14 14 51 22
08:53:58 13 12 53 22
P.S. This thread has been moved from HP-UX Technical Documentation to HP-UX > sysadmin. -HP Forum Moderator
- Tags:
- sar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2004 07:14 PM
02-23-2004 07:14 PM
Re: system performance
"glance plus" would help you in identifying this process( glance plus is product needs to buy, otherwise it's available on trial version for 60 days on application media).
if you don't like this try out with
#ps -aef
identify which process consuming more time.
- Tags:
- glance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2004 07:59 PM
02-23-2004 07:59 PM
Re: system performance
Like mentioned glanceplus is a good tool for this.
But you can start with sar -d to view which disk (if it is a disk) is the bottleneck. With vgdisplay -v you can identify the volumegroup that has the disk and with bdf you can get the mount point. With fuser -u /mountpoint you can get the processes active on the mount point. It will be a process that consumes considerable CPU time.
HTH,
Gideon
It can be a stale mirror, bad disk asswell so check the syslog dmesg for messages.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2004 08:25 PM
02-23-2004 08:25 PM
Re: system performance
If you do not have Glance use 'top'. this will give you a good idea of the most demanding processes. Also sar -d will show you which disk is being used.
Regads,
John.