- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Sar and iostat.
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
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
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
тАО05-19-2005 09:50 PM
тАО05-19-2005 09:50 PM
Sar and iostat.
I have got a mail saying to collect an "iostat -xntc" output every 10 minutes regarding the performance issue.Is there any option like this for iostat command ?
Regards,
Saneesh S.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-19-2005 10:05 PM
тАО05-19-2005 10:05 PM
Re: Sar and iostat.
I dont see any options like x,n and c. Only option available is t.
#>iostat -t 1 1
tty cpu
tin tout us ni sy id
0 2 0 0 0 100
device bps sps msps
c2t1d0 0 0.0 1.0
To confirm I just tried...
#>iostat -xntc
iostat: illegal option -- x
!!!!
Hope this helps
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-19-2005 10:14 PM
тАО05-19-2005 10:14 PM
Re: Sar and iostat.
this is a Solaris style use of iostat, for HP-UX you have to use a combination of iostat and sar.
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-20-2005 12:44 AM
тАО05-20-2005 12:44 AM
Re: Sar and iostat.
You can use sar and iostat for monitoring disk activity. See the examples below.
You need to the significance of attributes and it's values it is showing in order to conclude.
# sar -d 1 10
HP-UX ServerA B.11.23 U ia64 05/20/05
08:40:48 device %busy avque r+w/s blks/s avwait avserv
08:40:49 c2t1d0 0.98 0.50 1 2 0.00 7.11
08:40:50 c2t1d0 3.00 0.50 6 96 0.00 4.47
08:40:51
08:40:52 c2t1d0 1.00 0.50 1 16 0.00 9.72
08:40:53 c2t1d0 2.00 0.50 3 48 0.00 10.83
08:40:54
08:40:55 c2t1d0 1.00 0.50 1 4 0.00 6.47
08:40:56 c2t1d0 1.00 0.50 2 32 0.00 8.73
08:40:57
08:40:58
Average c2t1d0 0.90 0.50 1 20 0.00 7.15
# iostat
device bps sps msps
c2t1d0 0 0.0 1.0
c2t0d0 0 0.0 1.0
c4t0d0 0 0.0 1.0
c4t0d4 0 0.0 1.0
c4t0d3 0 0.0 1.0
c4t0d5 0 0.0 1.0
c4t0d6 0 0.0 1.0
c4t0d2 0 0.0 1.0
# iostat -h
iostat: illegal option -- h
usage: iostat [ -t ] [ interval [ count ] ]
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-21-2005 08:28 PM
тАО05-21-2005 08:28 PM
Re: Sar and iostat.
Out of these four (-xntc) only thr valid options in HPux.Run this at every 10 Minutes.
#iostat -t 10 10
( Will collect 10 samples at an interval of 10 seconds each)
Other commands to look into for HPUX will be sar and vmstat.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2005 02:34 PM
тАО05-22-2005 02:34 PM
Re: Sar and iostat.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2005 06:19 PM
тАО05-22-2005 06:19 PM
Re: Sar and iostat.
Regards,