- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: memory, CPU monitor
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
09-07-2004 01:56 PM
09-07-2004 01:56 PM
glance is impossible to store data. is there any tool that allow me to store performance data ?
Anyone can help me.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 02:02 PM
09-07-2004 02:02 PM
Re: memory, CPU monitor
http://openview.hp.com/products/ovperf/index.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 02:09 PM
09-07-2004 02:09 PM
Solution%usr at 90% %sys < 10 and %wio < 10 is quite healthy. It means the system is really being used unless you see any rogue processes in your 'glance' window. I would look at the top 10 processes and see what they are..
You can use glance in adviser_only mode to store the data.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 04:27 PM
09-07-2004 04:27 PM
Re: memory, CPU monitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 04:32 PM
09-07-2004 04:32 PM
Re: memory, CPU monitor
# man glance
For example:
# glance -advisor_only -j 15 > glance_advisor.out
The '-j time_in_seconds' option tells glance how often to update.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 05:32 PM
09-07-2004 05:32 PM
Re: memory, CPU monitor
Try the example.
Put the following lines in a file called glance.conf
PRINT " CPU SYSTEM MODE UTIL -",gbl_cpu_sys_mode_util
PRINT " CPU USER MODE UTIL - ",gbl_cpu_sys_mode_util
PRINT " CPU TOTAL UTIL - ",gbl_cpu_total_util
RUn the command
glance -adviser_only -syntax glance.conf -iterations 2 -j 2
Should print the stats for CPU system mode, user mode and total utilizations. You can add as many metrics you want. Look at /opt/perf/paperdocs for more metrics.
You can put the above in cron to generate metrics.
Else consider using 'sar'. man sadc, sa1 and sa2. You can also get sarcheck from www.sarcheck.com for a minimal cost I believe.
-Sri