help to parse prstat -t


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers help to parse prstat -t
# 1  
Old 04-23-2010
help to parse prstat -t

Code:
prstat -t -n 10 1 5

NPROC USERNAME  SWAP   RSS MEMORY      TIME  CPU
   143 sbswrk1  2082M 2139M   3.3% 801:46:08 1.0%
    26 sbswrk3  4573M 4675M   7.1% 651:28:35 0.8%
    35 sbswrk2  3922M 4004M   6.1% 1000:53:1 0.1%
     4 svcbmcp    47M   52M   0.1% 256:25:24 0.1%
    78 root      352M  186M   0.3% 100:20:30 0.0%
     5 xdmadm   1173M  602M   0.9%  10:45:54 0.0%
     3 xdmadm5  3784K 8112K   0.0%   0:00:00 0.0%
     2 wangry   1120K 3512K   0.0%   0:00:00 0.0%
     6 daemon   9224K 8568K   0.0%   7:47:47 0.0%



I used this command this is not work well
Code:
export MEMORY_CPU_USAGE1=`ssh ${OLC_1_USER}@${OLC_1_HOST} prstat -t -n 10 1 5 | awk '!/MEMORY/ && !/lwps,/ && !/CPU/ && !/averages:/ && !/%/ { if( $5 > 6 || $7 > 5 )} END  {print $0  "," }'`

I want to print the complete line($0) when the memory is more than 6.2% or Cpu is 3.2%

Thanks

Last edited by pludi; 04-23-2010 at 12:50 PM..
# 2  
Old 04-23-2010
How about:
Code:
awk -F'[ %]*' '$5>6.2||$7>3.2' infile

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

prstat from ptree ...

Hi, I know how to figure out the list of PID from my application name : ptree `pgrep MyApp` | awk '{print $1}' But I dont know how to pipe it for prstat -p <pidlist> ptree `pgrep MyApp` | awk '{print $1}' | prstat -p ??? I would like to monitor every ptree PID from my application. ... (4 Replies)
Discussion started by: RickTrader
4 Replies

2. Shell Programming and Scripting

prstat output

hi all, have a ksh script where i am doing a prstat -m -u osuser 1 1 >> $FILE_NAME but for some reason it only writes 15 lines wheres when i run the same command manually from command prompt it prints out 60 lines. why is it not writing the full 60 lines to the file ?? ta. (1 Reply)
Discussion started by: cesarNZ
1 Replies

3. Solaris

prstat

hi all, was trying to figure out how busy my app was by looking at the performance of the app server. did a 'prstat -s rss' command to find the app servers using most memory. Found a command 'prstat -m' which is meant to show more details on each pid but the output of this command... (1 Reply)
Discussion started by: cesarNZ
1 Replies

4. Shell Programming and Scripting

prstat

hi all, am writing a ksh script on solaris 9 to get the number of threads taken by a process. am using the prstat -p command to do this. output i get is : :"/export/home/user" > prstat -p 25528 | cut -f2 -d/ NLWP 203 Total: 1 processes, 203 lwps, load averages: 2.58, 3.24, 3.62... (2 Replies)
Discussion started by: cesarNZ
2 Replies

5. Shell Programming and Scripting

prstat output in GB

Hi, Is there any way by which the unit of size and rss will be only GB while I am running the prstat command? (2 Replies)
Discussion started by: King Nothing
2 Replies

6. Solaris

prstat O/P

Good Evening everyone, I am confused about prstat O/P as it shows memory values which are different from actual value.Below is the O/P of prstat command and swap commands. NPROC USERNAME SIZE RSS MEMORY TIME CPU 48 root 2113M 1590M 1.2% 45:09.39 32% 31 daemon ... (7 Replies)
Discussion started by: vvpotugunta
7 Replies

7. Solaris

prstat log

Hi All, But the prstat logs of my system shows:- NPROC USERNAME SWAP RSS MEMORY TIME CPU 77 oracle 17G 10G 65% 4:24:47 0.8% Total: 486 processes, 3850 lwps, load averages: 3.77, 4.45, 4.94 What does the MEMORY denotes? Is it the %memory used from RAM? Or is the %memory used by... (10 Replies)
Discussion started by: dipashre
10 Replies

8. Solaris

prstat log

Hi All, Operating System and Version: SunOS,Solaris 10 sparc(64 bit) RDBMS Version: 10.2.0.4.0 But the prstat logs of my system shows:- NPROC USERNAME SWAP RSS MEMORY TIME CPU 83 cemsbin 5204M 3604M 22% 53:46:00 6.7% 2 adm 244M 240M 1.5% 15:13:53 3.5% 77 oracle 17G 10G 65% 4:24:47... (0 Replies)
Discussion started by: dipashre
0 Replies

9. Shell Programming and Scripting

prstat in shell

Hello, How can I do to use prstat command in a korn-shell ? Thanks a lot. Rgds. (4 Replies)
Discussion started by: madmat
4 Replies

10. UNIX for Dummies Questions & Answers

Help with prstat

Hello, The last line of prstat shows load average. I am unable to figure out what actually it is. I have read the man pages and also googled, all for no use. Can somebody help me, as to what should be the avg. load of the system for best performance and how is this load of prstat calculated. (6 Replies)
Discussion started by: vibhor_agarwali
6 Replies
Login or Register to Ask a Question