- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- top-glance
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
12-18-2003 01:04 AM
12-18-2003 01:04 AM
I wanna raise a question to u experts. How reliable is the top? what are your experiences and which tools can be used instead of using the top (besides glance).
Thanks in advance
Andi
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 01:10 AM
12-18-2003 01:10 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 01:15 AM
12-18-2003 01:15 AM
Re: top-glance
Documentation on just how Glace arrives at it's numbers seems lacking in some areas.
(i.e. %disk busy)
I'm a huge fan of sar, limited functionality, but it's been around so long, that documentation is easy to find, easy keeps history, and it's free.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 01:22 AM
12-18-2003 01:22 AM
Re: top-glance
I suggest you to follow top'stat.
Some times infact glance doesn't match with top.
Maybe you have to install some glance's patches, (stating glance and hpux version)
L.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 01:23 AM
12-18-2003 01:23 AM
Re: top-glance
glance is a very handy tool too and I too, have a soft spot for "sar"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 01:26 AM
12-18-2003 01:26 AM
Re: top-glance
:-) John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 01:32 AM
12-18-2003 01:32 AM
Re: top-glance
in my experience top is very inaccurate, the higher the hpux the less reliable it is.
I trust glance metrics (if avaiable, since is a pay-product), and always trust sar and vmstat.
For monitoring disks performance you can also use iostat.
If you want to collect performance metrics, you can also think of getting mwa.
uptime can also be a good font for run-queue statistics
glance has many other options, like the syscall list, the memory region list, the open files list, otherwise you have to get many other products to have this information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 10:31 PM
12-18-2003 10:31 PM
Re: top-glance
I don't use "top" because it's "officially not supported" or it's only "unofficially supported" by HP. There's no guarantee of its accuracy, problem fixes, or future support. You might as well bite the bullet and become familiar with some of the official products. Previous replies list those for you. "glance" is good for real-time data and has a lot of options. Use "?" for a list of options and "h" command for detailed help on each screen.
"measureware(mwa)" (which comes with Glance Plus Pak) is fantastic for historical data. This is the tool of choice of many HP Performance Analysts. You can easily dump data that's importable and graphable by MS-Excel. Or you can use Perfview (a separate product) to look at and analyze that data without having to import it into your PC. Both "glance" and "mwa" use the HP-UX measurement interface daemon (midaemon) that has hooks into the kernel for very detailed performance metrics.
The UNIX command-line tools are also very powerful. I've attached a sample daily report that I use for a number of our servers. The report rolls up hourly summaries of data sampled every 10 minutes. With the magic of Kornshell and awk, you can have nice "sar", "vmstat", "uptime", "swapinfo", "netstat -i", and "bdf" summaries. See my attachment. One word of caution, I don't trust sar's "avwait/avserv" fields, so I compute my own service time:
service-time = 10 * (%busy) / (r+w/s)
Happy performance tuning!
=:-) Alex