- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Disk I/O kbps
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
03-20-2006 09:23 PM
03-20-2006 09:23 PM
Disk I/O kbps
can any of you pl tell me is there any command to find Disk I/O kbps
Please Urgent !!!
thanks in adv
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 09:26 PM
03-20-2006 09:26 PM
Re: Disk I/O kbps
glance
sar -d
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 09:33 PM
03-20-2006 09:33 PM
Re: Disk I/O kbps
bps Kilobytes transferred per second
Read man iostat.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 09:39 PM
03-20-2006 09:39 PM
Re: Disk I/O kbps
For a realistic approach to measuring disk IO is best taking a sample in about 7-10 sec for sar whether it is for SAN Disk or local disks,look for the trend in all the values and find out which disk is busy
sar -d 7 100
Please do assaign pionts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 09:50 PM
03-20-2006 09:50 PM
Re: Disk I/O kbps
You can use iostat,.
#iostat
device bps sps msps
c2t0d0 0 0.0 1.0
c10t2d7 0 0.0 1.0
c10t3d0 0 0.0 1.0
c10t3d1 0 0.0 1.0
c10t3d2 0 0.0 1.0
c10t3d3 0 0.0 1.0
c10t3d4 0 0.0 1.0
Check # man iostat for more details.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 10:23 PM
03-20-2006 10:23 PM
Re: Disk I/O kbps
Check with iostat bps (Kilobytes transferred per second. )
Example: If you would like to check for the disk ( c1t2d0)
# iostat 11 10 > iotest.data
# cat iotest.data | awk '{ print $2 }' | awk '{ R = R + $1} END { print "Current Data Transfer rate for : Disk [c1t2d0] =" R/10 "KB/sec" }'
Hope this will help ,
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 10:26 PM
03-20-2006 10:26 PM
Re: Disk I/O kbps
In first line grep for the 'disk' you want to check for io activity, and redirect:
# iostat 11 10 | grep c1t2d0 > iotest.data
Cheers,
Raj.