prstat problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting prstat problem
# 1  
Old 02-14-2008
prstat problem

This will be a smaple output for my prstat -t
NPROC USERNAME SIZE RSS MEMORY TIME CPU
43 root 249M 62M 1.5% 33:50:01 0.1%
12 oadmin 1396M 862M 22% 0:06:49 0.1%
2 acne 3960K 3176K 0.1% 0:00:00 0.0%
4 essagent 10M 7456K 0.2% 0:00:00 0.0%
1 smmsp 4424K 568K 0.0% 0:00:00 0.0%
1 daemon 2544K 1128K 0.0% 0:00:00 0.0%

I want to get the output of only user 'oadmin' so I tried to use

prstat -t | grep oadmin , when i used grep this doesnt seem to work any ideas please.
Smilie
# 2  
Old 02-14-2008
i got it

prstat -t -u oadmin doesnot give the output , imean the script never returns.essentially i just want to get the memory variable for user oadmin which is 22 , any ideas how to get this.

Last edited by vivsiv; 02-15-2008 at 02:53 AM.. Reason: correcting
# 3  
Old 02-15-2008
This should work:

Code:
prstat -t|grep oadmin|cut -d" " -f5

Regards
# 4  
Old 02-15-2008
prstat needs count option

try:

Code:
prstat -t 1 1 | gawk '/oadmin/{print $3;}'

# 5  
Old 02-15-2008
prstat -t>a ; more a|grep smmp

press ctl+c

you get your output
# 6  
Old 02-15-2008
This worked for me:

prstat -t 1 1 | awk '/oadmin/{print $5;}'
# 7  
Old 02-15-2008
Thanks Guys

Thanks guys ..all the solutions were helpful and I was able to use the stmt from Kevin into my program.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Capture PRSTAT

Is there any scripts to capture the process which use more than 5% CPU from prstat output? (9 Replies)
Discussion started by: tharmendran
9 Replies

2. UNIX for Dummies Questions & Answers

help to parse prstat -t

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 ... (1 Reply)
Discussion started by: madfox
1 Replies

3. 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

4. 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

5. 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

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. Shell Programming and Scripting

Script using prstat

Hi, I need a script which uses prstat command to check the performance . if a load averages crosses some threshold means I should receive the mail. this script should always run in back ground. Kindly help me on this. (1 Reply)
Discussion started by: jayaramanit
1 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