- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TOP Question
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
10-16-2002 01:09 AM
10-16-2002 01:09 AM
TOP Question
CPU LOAD USER NICE SYS IDLE BLOCK SWAIT INTR SSYS
0 0.47 0.0% 3.8% 2.0% 94.3% 0.0% 0.0% 0.0% 0.0%
1 0.39 1.0% 5.7% 2.4% 90.9% 0.0% 0.0% 0.0% 0.0%
2 0.89 0.2% 1.6% 6.1% 92.1% 0.0% 0.0% 0.0% 0.0%
3 1.45 1.2% 5.5% 2.2% 91.1% 0.0% 0.0% 0.0% 0.0%
--- ---- ----- ----- ----- ----- ----- ----- ----- -----
avg 0.80 0.6% 4.2% 3.2% 92.1% 0.0% 0.0% 0.0% 0.0%
What does the Nice column say ?
We have noticed that when its high the system is very slow... Or is that complete nonsense ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 01:21 AM
10-16-2002 01:21 AM
Re: TOP Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 01:29 AM
10-16-2002 01:29 AM
Re: TOP Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 01:43 AM
10-16-2002 01:43 AM
Re: TOP Question
In your case the problem is not the low percentage from NICE it's the high percentage of SYS
This lines shows the percentage of time spent in each of the processor states. The summary of the columns USER/NICE/SYS/IDLE is about 100%. Best state of machine is 100% IDLE and you are 100% away from this state.
So in your case all processors spent nearly the whole time for system tasks.
Do you have single processes that causes this situation ?
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 01:52 AM
10-16-2002 01:52 AM
Re: TOP Question
Niced tasks are only those whose nice value is negative. Time spent in niced tasks will also be counted in system and user time, so the total will be more than 100%.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 01:59 AM
10-16-2002 01:59 AM
Re: TOP Question
Look at man nice:
...
A negative value requires superuser privileges, and assigns a lower system nice value (higher priority) to command. If the current process is not privileged, the value is silently treated as if it were 0.
...
So if you try
nice -20 gzip
your NICE-Value of top increases and system becomes slow because this process gets more cpu time.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 02:29 AM
10-16-2002 02:29 AM
Re: TOP Question
i.e.The percentage of time that the CPU was in user mode at a nice priority during the interval.
(nice is used in altering the priority of a time sharing process)
Values can be +ve or -ve.
Higher the values lower the priority and vice versa.
After hpux10.0 releases the nice metrics include only positive nice values and not negative.
The default value is 20.
So -ve nice values range from 20 to 39 and +ve nice values range from 0 to 19.
Thanks