public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: "busy" load counters
@ 2003-09-13  7:00 Albert Cahalan
  2003-09-13  8:36 ` dada1
  0 siblings, 1 reply; 4+ messages in thread
From: Albert Cahalan @ 2003-09-13  7:00 UTC (permalink / raw)
  To: linux-kernel mailing list; +Cc: xuan--lkml--2003.09.12

Xuân Baldauf writes:

> Currently, tools like "top" show stats like
>
>   Cpu(s):  92.1% user,   6.9% system,   0.0% nice,   1.0% idle
>
> Unfortunately, these stats are not sufficient to determine wether the 
> system is "busy". Determining wether the system is "busy" is very useful 
> in case an interactive application (e.g. a shell or some shell command) 
> does not respond.
> Maybe it just hangs (waits for input) or does serious work (e.g. uses 
> the CPU or accesses the disk). Disk access is not visible in "top". 
> Depending on the machine, on disk accesses, there might be a slight or 
> significant rise in the "system" portion of those stats, but this is not 
> trustable.

The feature is available, but you'll need to upgrade
to procps-3.1.12 and linux-2.6.0-test4 at least.

http://www.kernel.org/pub/linux/kernel/v2.6/
http://procps.sf.net/

Once you've done that, both "top" and "vmstat" will
supply the info you want. There are 7 basic %CPU stats
right now:

us  regular user apps
sy  system (general kernel stuff)
ni  nice user apps (low-priority tasks)
id  idle
wa  waiting for IO to complete
hi  hard interrupt (IRQ) handlers
si  soft interrupt (network stack, mostly?) handlers

The "top" program shows all of those. The "vmstat"
program mixes "ni" into "us", and mixes "hi" and "si"
into "sy". An example for each:

procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in    cs us sy id wa
 0  0      0   6896   2668 108896    0    0     0     1   34    14 10  3 87  0

top - 02:56:17 up 12 days, 13:43, 25 users,  load average: 0.37, 0.25, 0.22
Tasks: 129 total,   4 running, 124 sleeping,   1 stopped,   0 zombie
Cpu(s):  8.6% us,  5.6% sy,  0.0% ni, 85.8% id,  0.0% wa,  0.0% hi,  0.0% si
Mem:    513924k total,   507068k used,     6856k free,     2664k buffers
Swap:        0k total,        0k used,        0k free,   108844k cached



^ permalink raw reply	[flat|nested] 4+ messages in thread
* "busy" load counters
@ 2003-09-12  2:59 Xuân Baldauf
  0 siblings, 0 replies; 4+ messages in thread
From: Xuân Baldauf @ 2003-09-12  2:59 UTC (permalink / raw)
  To: linux-kernel

Currently, tools like "top" show stats like

  Cpu(s):  92.1% user,   6.9% system,   0.0% nice,   1.0% idle

Unfortunately, these stats are not sufficient to determine wether the 
system is "busy". Determining wether the system is "busy" is very useful 
in case an interactive application (e.g. a shell or some shell command) 
does not respond.
Maybe it just hangs (waits for input) or does serious work (e.g. uses 
the CPU or accesses the disk). Disk access is not visible in "top". 
Depending on the machine, on disk accesses, there might be a slight or 
significant rise in the "system" portion of those stats, but this is not 
trustable.

I'd like a new stat "busy", which simply is one minus the time, when the 
system is idle but does _not_ have outstanding IO requests. Users may 
judge from this stat, wether their application waits for input or just 
needs some time. This way, they know better what to do when they get 
impatient, and they now it faster. (Yes, they can know it by looking up 
all processes of their application, strace them and check wether the 
actions observed involve just waiting and polling or maybe IO. But this 
is very tedious.)

How do you think about this? Would kernel hackers oppose such a 
"feature" for any reason?

Xuân.



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-09-13 15:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-13  7:00 "busy" load counters Albert Cahalan
2003-09-13  8:36 ` dada1
2003-09-13 15:39   ` Albert Cahalan
  -- strict thread matches above, loose matches on Subject: below --
2003-09-12  2:59 Xuân Baldauf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox