- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Global Run Queue
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
08-16-2002 12:09 PM
08-16-2002 12:09 PM
Global Run Queue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2002 12:28 PM
08-16-2002 12:28 PM
Re: Global Run Queue
(export UNIX95=""; ps -eo pid,state,args | grep " [R] ";)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2002 12:34 PM
08-16-2002 12:34 PM
Re: Global Run Queue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2002 12:51 PM
08-16-2002 12:51 PM
Re: Global Run Queue
You understand that the Global run queue is a moving target. The entries are constantly changing the the processes move through the queue.
Is there something in particular that you are looking for?
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2002 12:57 PM
08-16-2002 12:57 PM
Re: Global Run Queue
Global CPU Utilization = 66.33%
Global CPU System Mode Util should be < 50 = 38.21%
Global CPU Interrupt Util should be < 30 = 0.85%
Global CPU Context Switching Util should be < 30 = 1.79%
Global Priority Queue should be < 3 = 0.24
Global Run Queue should be < 3 = 19.00
Detected on 08/15/02 at 07:00
and just wanted to get the threshold and any extended data. Just tweaking. :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2002 01:03 PM
08-16-2002 01:03 PM
Re: Global Run Queue
symptom CPU_Bottleneck type=CPU
rule GBL_CPU_TOTAL_UTIL > 90 prob 35
rule GBL_CPU_TOTAL_UTIL > 95 prob 25
rule GBL_CPU_TOTAL_UTIL > 98 prob 15
rule GBL_CPU_TOTAL_UTIL > 100 prob 8
rule GBL_RUN_QUEUE > 2 prob 10
rule GBL_RUN_QUEUE > 4 prob 15
rule GBL_RUN_QUEUE > 8 prob 25
alarm CPU_Bottleneck > 80 for 5 minutes
type = "CPU"
start
if CPU_Bottleneck > 90 then
red alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
else
yellow alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
repeat every 10 minutes
if CPU_Bottleneck > 90 then
red alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
else
yellow alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
end
reset alert "End of CPU Bottleneck Alert"
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2002 01:09 PM
08-16-2002 01:09 PM
Re: Global Run Queue
alarm (GBL_CPU_TOTAL_UTIL > 90) or
(GBL_CPU_SYS_MODE_UTIL > 50) and
(GBL_PRI_QUEUE > 3) or
GBL_RUN_QUEUE > 4) for 5 minutes
Still looking for a way to list the run queue though. :)
Previously my and was an "or".