Is there a monitoring tool like xentop that will track historical data? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T08:05:45Z http://stackoverflow.com/feeds/question/97188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/97188/is-there-a-monitoring-tool-like-xentop-that-will-track-historical-data 0 Is there a monitoring tool like xentop that will track historical data? Otto 2008-09-18T21:29:05Z 2009-10-06T18:07:11Z <p>I'd like to view historical data for guest cpu/memory/IO usage, rather than just current usage.</p> http://stackoverflow.com/questions/97188/is-there-a-monitoring-tool-like-xentop-that-will-track-historical-data/97259#97259 1 Answer by jjohn for Is there a monitoring tool like xentop that will track historical data? jjohn 2008-09-18T21:37:42Z 2008-09-18T21:37:42Z <p><a href="http://linux.die.net/man/1/xentop" rel="nofollow">Xentop</a> is a tool to monitor the domains (VMs) running under Xen. VMware's ESX has a similar tool (I believe its called esxtop).</p> <p>The problem is that you'd like to see the historical CPU/Mem usage for domains on your Xen system, correct?</p> <p>As with all Virtualization layers, there are two views of this information relevant to admins: the burden imposed by the domain on the host and the what the domain thinks is its process load. If the domain thinks it is running low on resources but the host is not, it is easy to allocate more resources to the domain from the host. If the host runs out of resources, you'll need to optimize or turn off some of the domains.</p> <p>Unfortunately, I don't know of any free tools to do this. XenSource provides a rich XML-RPC API to control and monitor their systems. You could easily build something from that.</p> <p>If you only care about the domain-view of its own resources, I'm sure there are plenty of monitoring tools already available that fit your need.</p> <p>As a disclaimer, I should mention that the company I work for, Leostream, builds virtualization management software. Unfortunately, it does not really do utilization monitoring. </p> <p>Hope this helps.</p> http://stackoverflow.com/questions/97188/is-there-a-monitoring-tool-like-xentop-that-will-track-historical-data/97260#97260 1 Answer by gbjbaanb for Is there a monitoring tool like xentop that will track historical data? gbjbaanb 2008-09-18T21:37:42Z 2008-09-18T21:37:42Z <p>Try <a href="http://www.nagios.org/" rel="nofollow">Nagios</a>, or <a href="http://www.howtoforge.com/server_monitoring_monit_munin" rel="nofollow">Munin</a>.</p> http://stackoverflow.com/questions/97188/is-there-a-monitoring-tool-like-xentop-that-will-track-historical-data/99081#99081 0 Answer by Otto for Is there a monitoring tool like xentop that will track historical data? Otto 2008-09-19T02:51:58Z 2008-09-19T02:51:58Z <p>Both Nagios and Munin seem to have plugins/support for Xen data collection.</p> <p><a href="http://www.novell.com/coolsolutions/feature/19490.html" rel="nofollow">A Xen Virtual Machine Monitor Plugin for Nagios</a></p> <p><a href="http://munin.projects.linpro.no/wiki/PluginCat#Xen" rel="nofollow">munin plugins</a></p> http://stackoverflow.com/questions/97188/is-there-a-monitoring-tool-like-xentop-that-will-track-historical-data/1526671#1526671 1 Answer by John Lim for Is there a monitoring tool like xentop that will track historical data? John Lim 2009-10-06T16:30:03Z 2009-10-06T18:07:11Z <p>There is a perl program i have written that does this. See <a href="http://phplens.com/phpeverywhere/?q=node/view/266" rel="nofollow" title="xenstat.pl software">link text</a> It also supports logging to a URL.</p> <p>Features:</p> <pre><code>perl xenstat.pl -- generate cpu stats every 5 secs perl xenstat.pl 10 -- generate cpu stats every 10 secs perl xenstat.pl 5 2 -- generate cpu stats every 5 secs, 2 samples perl xenstat.pl d 3 -- generate disk stats every 3 secs perl xenstat.pl n 3 -- generate network stats every 3 secs perl xenstat.pl a 5 -- generate cpu avail (e.g. cpu idle) stats every 5 secs perl xenstat.pl 3 1 http://server/log.php -- gather 3 secs cpu stats and send to URL perl xenstat.pl d 4 1 http://server/log.php -- gather 4 secs disk stats and send to URL perl xenstat.pl n 5 1 http://server/log.php -- gather 5 secs network stats and send to URL </code></pre> <p>Sample output:</p> <pre><code>[server~]# xenstat 5 cpus=2 40_falcon 2.67% 2.51 cpu hrs in 1.96 days ( 2 vcpu, 2048 M) 52_python 0.24% 747.57 cpu secs in 1.79 days ( 2 vcpu, 1500 M) 54_garuda_0 0.44% 2252.32 cpu secs in 2.96 days ( 2 vcpu, 750 M) Dom-0 2.24% 9.24 cpu hrs in 8.59 days ( 2 vcpu, 564 M) 40_falc 52_pyth 54_garu Dom-0 Idle 2009-10-02 19:31:20 0.1 0.1 82.5 17.3 0.0 ***** 2009-10-02 19:31:25 0.1 0.1 64.0 9.3 26.5 **** 2009-10-02 19:31:30 0.1 0.0 50.0 49.9 0.0 ***** </code></pre>