HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

prstat — Report active process statistics. More information: <https://www.unix.com/man-page/sunos/1m/prstat>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandreportprocesscliactivestatisticsprstatmore
linux

Problem

How to use the prstat command: Report active process statistics. More information: <https://www.unix.com/man-page/sunos/1m/prstat>.

Solution

prstat — Report active process statistics. More information: <https://www.unix.com/man-page/sunos/1m/prstat>.

Examine all processes and reports statistics sorted by CPU usage:
prstat


Examine all processes and reports statistics sorted by memory usage:
prstat -s rss


Report total usage summary for each user:
prstat -t


Report microstate process accounting information:
prstat -m


Print out a list of top 5 CPU using processes every second:
prstat -c -n 5 -s cpu 1

Code Snippets

Examine all processes and reports statistics sorted by CPU usage

prstat

Examine all processes and reports statistics sorted by memory usage

prstat -s rss

Report total usage summary for each user

prstat -t

Report microstate process accounting information

prstat -m

Print out a list of top 5 CPU using processes every second

prstat -c -n 5 -s cpu 1

Context

tldr-pages: sunos/prstat

Revisions (0)

No revisions yet.