<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Robert Accettura&#039;s Fun With Wordage &#187; graphing</title>
	<atom:link href="http://robert.accettura.com/blog/tag/graphing/feed/" rel="self" type="application/rss+xml" />
	<link>http://robert.accettura.com</link>
	<description>Robert Accettura&#039;s Personal Blog on Web Development and Tech</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:43:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://robert.accettura.com/?pushpress=hub'/>
<cloud domain='robert.accettura.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Remove Spikes From RRDtool Graphs</title>
		<link>http://robert.accettura.com/blog/2009/10/24/remove-spikes-from-rrdtool-graphs/</link>
		<comments>http://robert.accettura.com/blog/2009/10/24/remove-spikes-from-rrdtool-graphs/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 03:24:46 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[graphing]]></category>
		<category><![CDATA[rrdtool]]></category>

		<guid isPermaLink="false">http://robert.accettura.com/?p=3004</guid>
		<description><![CDATA[I use RRDtool to make graphs on various things I monitor like server stats, network stats and it does a relatively good job. My one (big) complaint is that when you restart you occasionally see these gigantic spikes that completely &#8230; <a href="http://robert.accettura.com/blog/2009/10/24/remove-spikes-from-rrdtool-graphs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I use RRDtool to make graphs on various things I monitor like server stats, network stats and it does a relatively good job.  My one (big) complaint is that when you restart you occasionally see these gigantic spikes that completely mess up the data.  I&#8217;ve even seen spikes larger than what the system can technically handle.</p>
<p>Nobody mentioned there&#8217;s a <code>removespikes.pl</code> script (<a href="http://oss.oetiker.ch/rrdtool/pub/contrib/removespikes.tar.gz">download</a>) that will remove these outliers from your rrds.  I put together a quick shell script to make it quick for when I need to run it again:</p>
<pre>

!/bin/sh

for i in /path/to/graphs/rrd/*;
do
        perl removespikes.pl $i;
done;
</pre>
<p>If you have a ton of graphs a quick shell script to iterate through the directly may be quicker.  If you only have a handful like me, no big deal.</p>
<p>Keep the script around for the next time you have spikes to deal with.
<div id="rja_commentCountImage"><a href="http://robert.accettura.com/?p=3004#comments"><img src="http://robert.accettura.com/wp-content/commentCount/2009/10/20479c7.gif" alt="Comment Count" style="border:0;" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://robert.accettura.com/blog/2009/10/24/remove-spikes-from-rrdtool-graphs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye MRTG</title>
		<link>http://robert.accettura.com/blog/2008/06/15/goodbye-mrtg/</link>
		<comments>http://robert.accettura.com/blog/2008/06/15/goodbye-mrtg/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 04:35:45 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[graphing]]></category>
		<category><![CDATA[mrtg]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[rrdtool]]></category>

		<guid isPermaLink="false">http://robert.accettura.com/?p=1786</guid>
		<description><![CDATA[I&#8217;ve finally got just about all the network graphs I maintain using RRDtool rather than MRTG. I started doing this since MRTG isn&#8217;t good for graphing things with more than 2 sets of numbers. I started doing this because I &#8230; <a href="http://robert.accettura.com/blog/2008/06/15/goodbye-mrtg/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally got just about all the network graphs I maintain using RRDtool rather than MRTG.  I started doing this since MRTG isn&#8217;t good for graphing things with more than 2 sets of numbers.  I started doing this because I wanted to track <a href="http://robert.accettura.com/blog/2008/05/26/cable-modem-power-level-graphing/">cable modem data</a>.  I figured while I&#8217;m at it, I should move other stuff too.  </p>
<p>So much easier to read, and so much faster since your not spitting out graphics files every time the system polls.  Not to mention the quality of the graphing image is much nicer.  These are shrunk a little and they still look great.</p>
<p><img src="http://robert.accettura.com/wp-content/uploads/2008/06/20080615_traffic.png" alt="Traffic" class="centered aligncenter size-full wp-image-1787" /></p>
<p><img src="http://robert.accettura.com/wp-content/uploads/2008/06/20080615_ping.png" alt="Ping" class="centered aligncenter size-full wp-image-1788" /></p>
<p>MRTG is still running, but I think I&#8217;ll shut it down as soon as I can verify things are working the way I want.
<div id="rja_commentCountImage"><a href="http://robert.accettura.com/?p=1786#comments"><img src="http://robert.accettura.com/wp-content/commentCount/2008/06/6449f44.gif" alt="Comment Count" style="border:0;" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://robert.accettura.com/blog/2008/06/15/goodbye-mrtg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

