I am looking for a "cat /proc/diskstats
(from linux)" equivalent in solaris OS, to get disk stats such as reads per sec, writes per sec, kb reads per sec, kb writes per sec.
I tried iostat -xnp
, but i guess its not giving me the complete information.
when i issues df -k
, i could see only entry with partition name as /dev/dsk/* format, that is my CD drive.
Output of df -k
:
Filesystem 1024-blocks Used Available Capacity Mounted on
/dev/dsk/c1t1d0s2 57632 57632 0 100% /media/VBOXADDITIONS_5.0.14_105127
So, i am expecting an entry with c1t1d0s2
in iostat -xnp
, but i dont see any.
Is iostat -xnp
the right command for my problem?