- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Graphical Performance monitoring Reports
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-22-2004 06:40 PM
08-22-2004 06:40 PM
Graphical Performance monitoring Reports
Is there any free software available for Performance monitor and gives graphical report.
Please advise
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2004 06:49 PM
08-22-2004 06:49 PM
Re: Graphical Performance monitoring Reports
You could use 'top' which gives a great deal of information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2004 06:52 PM
08-22-2004 06:52 PM
Re: Graphical Performance monitoring Reports
I need a graphical monitoring software which will keep the database and generate weekly reports , which i need to show my manager .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2004 06:55 PM
08-22-2004 06:55 PM
Re: Graphical Performance monitoring Reports
If you just write a script using sar or vmstat you can import the output in excel and make graphs of it.
Monitoring tools like bigbrother can give you an idea on cpu-load but is not in detail.
A script that uses vmstat is attached to this post.
Keep in mind that HP-tool PerfView gives much more information.
HTH,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2004 07:23 PM
08-22-2004 07:23 PM
Re: Graphical Performance monitoring Reports
I looking for something like sarcheck. Is there any other software like that with comes for free.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2004 08:15 PM
08-22-2004 08:15 PM
Re: Graphical Performance monitoring Reports
Free software for performance monitoring is like utopia. Nice idea but not there.
Due to the amount of work involved in making such a thing there is always a charge.
Get glance. Hp supports it.
And it gives both graphical and ascii output so it is what you need.For the security it offers tell your manager that it is a small cost.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 01:20 AM
08-23-2004 01:20 AM
Re: Graphical Performance monitoring Reports
You could easily use GNUPlot(www.gnuplot.info) to graph any columnar data like the script attached earlier.I hope this helps a bit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 01:36 AM
08-23-2004 01:36 AM
Re: Graphical Performance monitoring Reports
http://people.ee.ethz.ch/~oetiker/webtools/mrtg/mrtg.html
You can use it to plot almost anything....
In the mrtg.cfg file, using snmp, I plot cpu and memory load like this:
Target[svr008.cpu]:.1.3.6.1.4.1.11.2.3.1.1.15.0&.1.3.6.1.4.1.11.2.3.1.1.13.0:public@svr008.mydomain.com + .1.3.6.1.4.1.11.2.3.1.1.16.0&.1.3.6.1.4.1.11.2.3.1.1.14.0:public@svr008.mydomain.com
Title[svr008.cpu]: CPU Load on svr008.mydomain.com
MaxBytes[svr008.cpu]: 100
Ylegend[svr008.cpu]: CPU Load
ShortLegend[svr008.cpu]: %
PageTop[svr008.cpu]:
CPU Load on svr008
Options[svr008.cpu]: integer, growright, nopercent
WithPeak[svr008.cpu]: wmy
LegendO[svr008.cpu]: User/System:
LegendI[svr008.cpu]: Idle/Nice:
Legend1[svr008.cpu]: Idle/Nice CPU Time
Legend2[svr008.cpu]: User/System CPU Time
Legend3[svr008.cpu]: Maximal Idle/Nice CPU Time
Legend4[svr008.cpu]: Maximal User/System CPU Time
Target[svr008.mem]: .1.3.6.1.4.1.11.2.3.1.1.7.0&.1.3.6.1.4.1.11.2.3.1.1.8.0:public@svr008.mydomain.com
Title[svr008.mem]: Memory on svr008.mydomain.com
MaxBytes[svr008.mem]: 1000000000
Ylegend[svr008.mem]: Memory Usage
ShortLegend[svr008.mem]:
PageTop[svr008.mem]:
Memory on svr008
Options[svr008.mem]: integer, gauge, growright, nopercent
kilo[svr008.mem]: 1024
WithPeak[svr008.mem]: wmy
LegendO[svr008.mem]: Total:
LegendI[svr008.mem]: Free:
Legend1[svr008.mem]: Free System Memory
Legend2[svr008.mem]: Total Available System Memory
Legend3[svr008.mem]: Maximal Free System Memory
Legend4[svr008.mem]: Maximal Available System Memory
You can also generate graphs using a file, like so:
#------------------------------------------
Target[dnsreqs]: `cat /tmp/sha1.named.stats.mrtg`
Options[dnsreqs]: nopercent,growright,perhour
Title[dnsreqs]: DNS: Requests per hour SHA1
PageTop[dnsreqs]:
DNS: Requests per hour on SHA1
MaxBytes[dnsreqs]: 1000000000
YLegend[dnsreqs]: reqs/hour
ShortLegend[dnsreqs]: per hour
LegendI[dnsreqs]: Requests:
LegendO[dnsreqs]: Failures:
Legend1[dnsreqs]: Requests per hour
Legend2[dnsreqs]: Failures per hour
The contents of file:
# cat /tmp/sha1.named.stats.mrtg
4
0
27 days 21:06
sha1
Which is created from this script:
#!/bin/sh
# generate mrtg file for dns stats
/usr/sbin/rndc stats
SERVER=`uname -n`
MRTG=/tmp/sha1.named.stats.mrtg
STATS=/etc/namedb/named.stats
#get success
tail -7 $STATS | head -1 |awk '{print $2}'>$MRTG
tail -2 $STATS | head -1 |awk '{print $2}'>>$MRTG
uptime | awk '{print $3,$4,$5}' |sed s/,//g >>$MRTG
echo $SERVER >>$MRTG
All run from cron:
# mrtg
4,9,14,19,24,29,34,39,44,49,54,59 * * * * /usr/local/bin/mrtg-disk >/dev/null 2>&1
4,9,14,19,24,29,34,39,44,49,54,59 * * * * /usr/local/bin/mrtg-dns-stats >/dev/null 2>&1
0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/local/bin/mrtg /opt/hpws/apache/mrtg/mrtg.cfg --logging /var/adm/mrtg.log >/dev/null 2>&1
Rgds...Geoff