- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance problem
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
08-12-2003 11:37 PM
08-12-2003 11:37 PM
Any free tool can show the Logical volume I/O except glance or perView?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 12:07 AM
08-13-2003 12:07 AM
Re: Performance problem
I doubt you can get a free tool to show i/o by lvol - only high level programs which cost like glance or bmc patrol do this. The best free tool is sar, but its by device, not lvol (but you can lookup the device to see which lvol it is in).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 12:36 AM
08-13-2003 12:36 AM
Re: Performance problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 02:24 AM
08-13-2003 02:24 AM
Re: Performance problem
You need to use posix shell as it automatically converts the offset in hex to decimal.
let x=$(lsof|grep "/dev/rmt"|head -1|awk '{print $7}') 2>/dev/null
if [ $x -eq 0 ]
then
echo "Error - no tape backup currently running!"
exit 1
fi
while true
do
sleep 60
let z=$(lsof|grep "/dev/rmt"|head -1|awk '{print $7}')
let y=$z-$x
let y=$y/1000000
let u=$y/60;echo "${y} MB/min, ${u} MB/sec over last minute"
let x=$z
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 07:47 PM
08-13-2003 07:47 PM
Re: Performance problem
truss - trace system calls and signals
DESCRIPTION
truss executes the specified command and produces a trace of
the system calls it performs, the signals it receives, and
the machine faults it incurs. Each line of the trace output
reports either the fault or signal name or the system call
name with its arguments and return value(s). System call
arguments are displayed symbolically when possible using
defines from relevant system headers; for any pathname
pointer argument, the pointed-to string is displayed. Error
returns are reported using the error code names described in
intro(2).ystem calls and signals
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 07:50 PM
08-13-2003 07:50 PM
SolutionYou can get it here ready to insall in depot (SD format)
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/tusc-7.5/