prstat output in GB


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting prstat output in GB
# 1  
Old 05-13-2009
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  
Old 05-13-2009
I think it depends on the virtual memory. If you do a

Code:
prstat -s size

It should give the prstat sort by size( mostly in MB)
# 3  
Old 05-14-2009
Yeah, I guess it depends on the amount of virtual memory being used up (or for that matter the RSS also).
But what I was looking for was a command wherein I would not have to do any calculation on my own.
Anyway I think there is no way out of this situation except for writing a script Smilie.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to output the prstat into table and send through email?

Hi how to send below prstat script output into table format and send through email? prstat|awk '{ if ($9 >= 5) print $0 }' (17 Replies)
Discussion started by: tharmendran
17 Replies

2. Shell Programming and Scripting

Format Top and prstat command output

need help with formatting output of command top and prstat. My requirment is to remove few columns and display remaining . But when i used awk to do that the output seems to be have gone vague, mixing the column values. After using awk to print particular column the output seems to have lost... (1 Reply)
Discussion started by: NarayanaPrakash
1 Replies

3. Shell Programming and Scripting

How to print prstat -Z output into a file?

Hi Expert, I want to print CPU and Memory utilization into a text file. I am using "prstat -Z" to see the output on screen. When I run below command prstat -Z | grep httpd | awk '{print$3} '>> output.txt but it is not printing to file. Also I want to be below header on output PID USERNAME ... (6 Replies)
Discussion started by: lalit kumar
6 Replies

4. Shell Programming and Scripting

Output of prstat for 60 secs

Hi, I want to fire the prstat command which should run fro 60 secs and get the report into a text file using a script. I just know the command: prstat -c >> log.txt which will run until we stop it. But i want the script to run only for 60 sec,print the output to text file and stop... (3 Replies)
Discussion started by: nessj
3 Replies

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

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

7. Solaris

prstat output

Can someone please explain me the "TIME" field of the output of "prstat -p<pid>" command ? The man page says it is "The cumulative execution time for the process". Does it mean how many hrs:min:sec the process is running ? If so then I'm not getting the desired output. Can someone pls help me in... (5 Replies)
Discussion started by: senabhi
5 Replies

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

9. Shell Programming and Scripting

Redirect the output of prstat

Hi, How to redirect the output of prstat command to a file. Ex: I want to do like this while : do prstat >> prs.log sleep 5 done is it possible ???? if No, then how can i proceed?? PLEASE HELP ME OUT FROM THIS :confused: Thanks in advance ----------- (2 Replies)
Discussion started by: vastare
2 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