<?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>Hank Beaver &#187; logging</title>
	<atom:link href="http://www.hankbeaver.com/index.php/tag/logging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hankbeaver.com</link>
	<description>Ruby, open-source, Internet technologist located in Atlanta, GA, USA</description>
	<lastBuildDate>Tue, 29 Jun 2010 05:34:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Realtime response time reporting from Rails logs using regex.</title>
		<link>http://www.hankbeaver.com/index.php/2009/06/05/realtime-response-time-reporting-from-rails-logs-using-regex/</link>
		<comments>http://www.hankbeaver.com/index.php/2009/06/05/realtime-response-time-reporting-from-rails-logs-using-regex/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 15:12:20 +0000</pubDate>
		<dc:creator>hbeaver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://www.rubyslacker.com/?p=86</guid>
		<description><![CDATA[Simple but effective regex to monitor when there are issues. In my example below, this will show all response times &#62; 1 second:
 tail -f production.log &#124; egrep "Completed in [0-9]{3,10}"
]]></description>
			<content:encoded><![CDATA[<p>Simple but effective regex to monitor when there are issues. In my example below, this will show all response times &gt; 1 second:</p>
<pre> tail -f production.log | egrep "Completed in [0-9]{3,10}"</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.hankbeaver.com/index.php/2009/06/05/realtime-response-time-reporting-from-rails-logs-using-regex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling logging (logs) on MERB in development</title>
		<link>http://www.hankbeaver.com/index.php/2008/12/06/enabling-logging-logs-on-merb-in-development/</link>
		<comments>http://www.hankbeaver.com/index.php/2008/12/06/enabling-logging-logs-on-merb-in-development/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 15:29:01 +0000</pubDate>
		<dc:creator>hbeaver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[merb]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.rubyslacker.com/?p=66</guid>
		<description><![CDATA[
MERB does not have development logging turned on by default something I like very much in Rails. To turn it on, uncomment this line:
c[:log_file]  = Merb.root / "log" / "development.log"

In the config/environments/development.rb file.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rubyslacker.com/wp-content/uploads/2008/12/picture-1.png"><img class="alignleft size-thumbnail wp-image-67" title="picture-1" src="http://www.rubyslacker.com/wp-content/uploads/2008/12/picture-1-150x57.png" alt="" width="150" height="57" /></a><br />
MERB does not have development logging turned on by default something I like very much in Rails. To turn it on, uncomment this line:</p>
<pre>c[:log_file]  = Merb.root / "log" / "development.log"
</pre>
<p>In the config/environments/development.rb file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hankbeaver.com/index.php/2008/12/06/enabling-logging-logs-on-merb-in-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
