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
03-11-2004 05:02 PM
03-11-2004 05:02 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 05:20 PM
03-11-2004 05:20 PM
Re: glance
glance gives the CPU and Memory Usage; to know about the cpu info, Memory Information you can sysinfo.
Pl. view attachment..
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 05:41 PM
03-11-2004 05:41 PM
Re: glance
Ofcourse Yes it is the performance measuring tool used for checking the bottleneck of CPU,
Memory& Disks.
You can also use sar and redirect the output to a file & vmstat for memory.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 05:43 PM
03-11-2004 05:43 PM
Re: glance
If you like to have reports over a long period of time you could better use vmstat
I attached a script that gathers info every 2 seconds, but you can change that to fit your own needs.
It creates an output file in /tmp which you can import in a spreadsheet an draw graph with this.
HTH,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 05:57 PM
03-11-2004 05:57 PM
Re: glance
For simple configuration data, yes Glance can get that information. Put the following in a file
print "OS :",GBL_OSNAME
print "OS RELEASE :",GBL_OSRELEASE
print "OS VERSION :",GBL_OSVERSION
print "NUMBER OF CPUS :",GBL_NUM_CPU
print "MODEL :",GBL_MACHINE_MODEL
print "KERNETL BIT TYPE :",GBL_OSKERNELTYPE_INT
print "TOTAL MEMORY :",GBL_MEM_PHYS
and run
$glance -iterations 1 -j1 -adviser_only -syntax your_file
and see what you get.
For performance data, put the following
print "TOtal CPU Utilization :", GBL_CPU_TOTAL_UTIL
print "TOtal Disk Physical IO Rate:", GBL_DISK_PHYS_IO_RATE
print "Total Memory Used :", GBL_MEM_UTIL
print "Total Network Packaet Rate :", GBL_NET_PACKET_RATE
and run the same command.
The above are only examples. There are quire a few metrics that you can see under /var/opt/perf/reptall file.
If you have measureware, then you can historical data using the command "extract". It is a self-guiding tool and very easy to use. Just invoke and rest is easy.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 06:14 PM
03-11-2004 06:14 PM
SolutionRegards,
Trond