- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to extract data from glance/gpm
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
06-02-2005 12:09 AM
06-02-2005 12:09 AM
How to extract data from glance/gpm
Is it possible to extract data in text/asci
format to view from Glance/Gpm tool on hpux 11i ?
Thanks,
Shiv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2005 12:16 AM
06-02-2005 12:16 AM
Re: How to extract data from glance/gpm
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2005 12:38 AM
06-02-2005 12:38 AM
Re: How to extract data from glance/gpm
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2005 01:48 AM
06-02-2005 01:48 AM
Re: How to extract data from glance/gpm
The glance/pv collects data from mwa agent. The data is kept in /var/opt/perf/datafiles.
The difference between glance and pv is that the former gives the picture at that point of time, while the later can store the data and give you historical data.
You can manage without PV. Everyday, use extract command to extract data from datafiles and store them somewhere. now you analyse this data later n, draw graphs etc. You will have to extract data before datafiles are rotated. (this is defined in parm file)
If you do not want to use extract, you can use glance in adviser mode at perodic intervals and store data.
Read the man pages of extract, glance carefully. It has all the details you require.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2005 02:09 AM
06-02-2005 02:09 AM
Re: How to extract data from glance/gpm
Attached is an OVPA-extract script that has been in use for long time. Uses the extract utility.
Do read the man on extract as there are lots of options. You will gain an understanding of the options I am using here as well.
NOTE, modify this script for your environment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2005 07:22 PM
06-02-2005 07:22 PM
Re: How to extract data from glance/gpm
OPTION=g ## g=PROCESS LIST
INTERVAL=5 ## 5 is std
ITERATIONS=200 ## 200 is max ! (glance will do "$ITERATIONS + 1" prints)
LOGFILE=/var/tmp/glance/glance.${OPTION}.`date '+%m%d.%X'`
glance -${OPTION} -j ${INTERVAL} -iterations ${ITERATIONS} -f ${LOGFILE}
PME.