- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- User load average
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-05-2006 03:48 AM
07-05-2006 03:48 AM
User load average
Is possible get the load average per user in HPUX11i??
Explanation:
I've a Rp8420 box (20 CPU) with SAP R3, in a operating system level have 3 users (root, oraSID and SIDadm) and I need to know the load average for SIDadm user. With "top" command get all process and users, and using "grep" I can extract the process for SIDadm users, but exist another command to do this or some script to make a SUM?
Thanks and sorry for my english.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 03:51 AM
07-05-2006 03:51 AM
Re: User load average
it's possible to obtain this information also by glance
regards
L-DERLYN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 03:55 AM
07-05-2006 03:55 AM
Re: User load average
sorry it's not an exact information because glance give a global information for users
regards
L-DERLYN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 09:22 AM
07-05-2006 09:22 AM
Re: User load average
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 10:30 AM
07-05-2006 10:30 AM
Re: User load average
I suspect what you want is the CPU usage as a percentage. The following commands will do this for you:
UNIX95=1 ps -u root -o pcpu,user,pid,args
UNIX95=1 ps -u orasid -o pcpu,user,pid,args
UNIX95=1 ps -u sidadm -o pcpu,user,pid,args
Now the percentage used by root will almost always be zero. Occasionally a single process will consume a lot of CPU time but this is usually temporary or it is a process that may need a patch.
Bill Hassell, sysadmin