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…“)
 
m (Text replacement - "[[Kategorie:" to "[[Category:")
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Kategorie:Solaris]]
[[Category:Solaris]]


==Which filesystem is busy?==
==Which filesystem is busy?==


For zfs (-F zfs) you can use this oneliner:
For zfs (-F zfs) you can use this oneliner:
<source lang=bash>
<syntaxhighlight lang=bash>
# fsstat -i $(df -hF zfs | nawk '{print $NF}') 5
# fsstat -i $(df -hF zfs | nawk '{print $NF}') 5
</source>
</syntaxhighlight>
 
==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]

Latest revision as of 03:20, 26 November 2021


Which filesystem is busy?

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

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

Links