Question about SAR command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Question about SAR command
# 1  
Old 02-26-2009
Question about SAR command

Hi,

# SAR -u 5 5 shows this

10:01:32 AM CPU %user %nice %system %iowait %idle
10:01:37 AM all 1.90 0.00 1.20 96.90 0.00
10:01:42 AM all 1.30 0.00 1.70 97.00 0.00
10:01:47 AM all 4.30 0.00 1.60 94.11 0.00
10:01:52 AM all 1.50 0.00 1.20 97.30 0.00
10:01:57 AM all 1.90 0.00 1.10 97.00 0.00
Average: all 2.18 0.00 1.36 96.46 0.00

I think this %iowait is too much. I noticed when it's about 0.5% server is very okay, but when more than 90% it's very very slow.

What is %iowait. Can anyone explain more about this and how can I fix it ?

Thanks
# 2  
Old 02-26-2009
I/O wait is the time your system is waiting for input/output. This can apply to disk, tape, or network connections. So when you notice your system's i/owait is high it's waiting for I/O transactions to finish - if you get enough processes requesting i/o ( most do ), you system will slow down. You can check with netcat, top, iostat, etc. to try and find you "bottle neck".

But depending on the system's main function you maybe able to make an educated guess on where your problem is.

Tom de
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Need help on sar command.

Hi, how to find out actual utilization of memory using sar -r in Linux, I understand Linux keep entire memory in cache/buffers. I would like to know how to find out actual usage of memory (1 Reply)
Discussion started by: manoj.solaris
1 Replies

2. UNIX for Dummies Questions & Answers

sar command for Solaris/AIX

Hello, Can you please explain me how to parameter and use "sar" command on Solaris (AIX) ? When I use it on Solaris I got the following error : bash-3.00# sar sar: data file not in sar format Thanks, (2 Replies)
Discussion started by: adilyos
2 Replies

3. Solaris

SAR averages question

Hi all Bit of a silly question, but if I run sar to get the CPU stats (something like this): sar -u 300 1 The figures that are returned, is it in the above case the average over 300 seconds, or does it just wait for 300 seconds before obtaining the readings? (1 Reply)
Discussion started by: kinetik
1 Replies

4. Shell Programming and Scripting

Setup of sar command for CPU measures

I receive on a daily basis CPU measures on a UNIX Server (AIX 5.3 version, korn shell). These CPU measures are provided by Omnivision tool. We could see that Omnivision daily stats are not always equal to NMON stats regarding CPU level. On my side (I work in an IT Production Support Team, not... (0 Replies)
Discussion started by: Scofield38
0 Replies

5. Shell Programming and Scripting

Any alternative of sar command

Hi all, I am using linux box ...i dont find the manual entry of sar command through man sar ...it is in unix not in linux although i have to check the cpu utilization and paging...any alternative of sar command.. Thanks Vijay Sahu (1 Reply)
Discussion started by: vijays3
1 Replies

6. Solaris

problem with sar command

hi all:- when i try to use sar command i get this error how can i fix it bash-3.00# sar -A sar: can't open /var/adm/sa/sa16 No such file or directory (5 Replies)
Discussion started by: sharkux
5 Replies

7. Solaris

sar command not reporting

I am running Solaris 10 in a sparc environment. I have the sys crontab setup to use sar to gather data and report it. My sys crontab entry looks like this: 0,5,10,15,20,25,30,35,40,45,50,55 * * * 0-6 /usr/lib/sa/sa1 20,40 8-17 * * 1-5 /usr/lib/sa/sa1 5 18 * * 1-5 /usr/lib/sa/sa2 -s 8:00 -e... (2 Replies)
Discussion started by: RobSand
2 Replies

8. UNIX for Dummies Questions & Answers

how can i make sar command run forever ?

Hello all i found out about the sar command but when looking in the man pages there is no way to make sar working for ever .. only with some kind of interval . like sar 2 30 . my question is can i just run sar for ever ? (5 Replies)
Discussion started by: umen
5 Replies

9. UNIX for Dummies Questions & Answers

Can't understand sar command

HI Experts, Can anyone pls help me to understand this.. >sar 20:05:00 1 2 1 96 20:10:00 2 2 10 87 20:15:00 1 2 19 78 20:20:00 1 2 14 83 20:25:00 1 2 16 81 20:30:00 1 ... (1 Reply)
Discussion started by: shaan_dmp
1 Replies

10. UNIX for Dummies Questions & Answers

Sar question

Hi all, With Sar, it gives you the CPU usage for the last x minutes etc, does anyone know if this is an average value when the machine in question has multiple CPU's, or simply just a reading of CPU #1? Ta. (3 Replies)
Discussion started by: danhodges99
3 Replies
Login or Register to Ask a Question