Operating System - HP-UX
1748107 Members
4864 Online
108758 Solutions
New Discussion юеВ

Need Total IO pages per second

 
Lonny Balderston
Frequent Advisor

Need Total IO pages per second

Hi - I am being asked to provide Total IO pages per second figures for my HP9000s. How can I get this info via Glance or otherwise? THanks so much!
7 REPLIES 7
Ivan Ferreira
Honored Contributor

Re: Need Total IO pages per second

I don't know about Glance, but for memory pages in and pages out, you can use the vmstat command.

For disk I/O, you can use the iostat command or sar -d.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Asif Sharif
Honored Contributor

Re: Need Total IO pages per second

Hi Balderston,

#vmstat -s
#vmstat -s |grep page
http://docs.hp.com/en/B2355-60127/vmstat.1.html

Regards,
Asif Sharif
Regards,
Asif Sharif
Arunvijai_4
Honored Contributor

Re: Need Total IO pages per second

Hello,

You can use "iostat" to get this information,

# iostat 10 5

Which will Display I/O statistics for all disks every 10 seconds and terminate after 5 successive readings

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Arturo Galbiati
Esteemed Contributor

Re: Need Total IO pages per second

Hi Lonny,
you could use iostat.
See man for further info.
HTH,
Art
Muthukumar_5
Honored Contributor

Re: Need Total IO pages per second

You can use methods as,

1) iostat -t
2) vmstat -d
3) sam -> performance monitor -> disk and terminal activity

--
Muthu
Easy to suggest when don't know about the problem!
Muthukumar_5
Honored Contributor

Re: Need Total IO pages per second

Use this script:

#!/bin/sh
logfile=/tmp/iostat.log
while [[ 1 ]]
do

(date;iostat -t ) >> ${logfile}

done

# end
exit 0

Use /tmp/iostat.log for iostat informations.

--
Muthu
Easy to suggest when don't know about the problem!
Arunvijai_4
Honored Contributor

Re: Need Total IO pages per second

Hello,

You can use SEP's script as well,

http://www.hpux.ws/buildmail.hpux.text


-Arun
"A ship in the harbor is safe, but that is not what ships are built for"