- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- % activity disk
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:05 AM
06-25-2002 06:05 AM
% activity disk
Y search a command that indicates the percentage of time the physical disk was active like AIX(iostat).
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:08 AM
06-25-2002 06:08 AM
Re: % activity disk
#iostat [interval] [count]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:09 AM
06-25-2002 06:09 AM
Re: % activity disk
will show disk activity every 10 seconds over 1 minute.
Otherwise you can use measureware to collect stats over time or Glance to get real-time figures for each disk, also Glance gives you i/o by logical volume and filesystem which you cannot get otherwise.
iostat 10 6 will show you activity for disks on HP-UX, but not busy%.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:10 AM
06-25-2002 06:10 AM
Re: % activity disk
Another useful built-in command is sar -d interval count
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:11 AM
06-25-2002 06:11 AM
Re: % activity disk
Use
sar -d 10 1
and well iostat command is available in hpux also.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:13 AM
06-25-2002 06:13 AM
Re: % activity disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:14 AM
06-25-2002 06:14 AM
Re: % activity disk
I suggest you to use glance/gpm/perfview to monitor the disk activity.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:14 AM
06-25-2002 06:14 AM
Re: % activity disk
the basic command is sar -d x y where x is the no of times you want to run after every y seconds. this can be run in cron to collect data . However there are tools like perf view which can record disk activity over a long period of time .
Also in case you have EMC frame then you can use vendor specific utilities like ( powermt display ) to know waht is teh activity going on
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2002 03:42 AM
06-26-2002 03:42 AM
Re: % activity disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2002 04:07 AM
06-26-2002 04:07 AM
Re: % activity disk
REPORT "MWA Export !DATE !TIME Logfile: !LOGFILE !COLLECTOR !SYSTEM_ID"
FORMAT ASCII
HEADINGS ON
SEPARATOR="|"
SUMMARY=60
MISSING=0
DATA TYPE DISK
DATE
TIME
BYDSK_DEVNAME
BYDSK_PHYS_READ_RATE
BYDSK_PHYS_WRITE_RATE
BYDSK_PHYS_IO_RATE
BYDSK_SYSTEM_IO_RATE
BYDSK_UTIL
BYDSK_REQUEST_QUEUE
If you did not know
# /opt/perf/bin/extract -xp -d -r
-xp ==> export
-d ==> detailed disk metrics
-r ==> report-file name
-b ==> begin date & time
-e ==> end date & time
You can also look at the disks in real time using
# /opt/perf/bin/glance -u
Tim