Solaris IO Analyse: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
(Die Seite wurde neu angelegt: „Kategorie:Solaris ==Which filesystem is busy?== For zfs (-F zfs) you can use this oneliner: <source lang=bash> # fsstat -i $(df -hF zfs | nawk '{print $N…“)
 
No edit summary
Line 7: Line 7:
# fsstat -i $(df -hF zfs | nawk '{print $NF}') 5
# fsstat -i $(df -hF zfs | nawk '{print $NF}') 5
</source>
</source>
==Links==
* [https://blogs.oracle.com/BestPerf/entry/i_o_analysis_using_dtrace I/O analysis using DTrace]
* [http://www.brendangregg.com/DTrace/dtrace_oneliners.txt Brendan Gregg's DTrace onliners]

Revision as of 16:17, 30 April 2015

Kategorie:Solaris

Which filesystem is busy?

For zfs (-F zfs) you can use this oneliner:

# fsstat -i $(df -hF zfs | nawk '{print $NF}') 5

Links