<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Hadoop DFS Check Plugin for Nagios</title>
	<atom:link href="http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/</link>
	<description>"Look behind you, a Three-Headed Monkey!"</description>
	<lastBuildDate>Tue, 25 May 2010 09:39:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Fahd</title>
		<link>http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/comment-page-1/#comment-5688</link>
		<dc:creator>Fahd</dc:creator>
		<pubDate>Fri, 22 Jan 2010 19:06:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.matejunkie.com/?p=1110#comment-5688</guid>
		<description>Changes to make it work with 0.20.1

124,126c124,125
&lt;     dfs_used=`echo -e &quot;$tmp_vals&quot; &#124; grep -m1 &quot;DFS Used:&quot; &#124; awk &#039;{print $3}&#039;`
&lt;     dfs_used=`expr $dfs_used / 1024 / 1024`
     dfs_used=`echo -e &quot;$tmp_vals&quot; &#124; grep -m1 &quot;Used raw bytes:&quot; &#124; awk &#039;{print $4}&#039;`
&gt;     dfs_used=`expr ${dfs_used} / 1024 / 1024`
128,130c127,128
&lt;     dfs_total=`echo -e &quot;$tmp_vals&quot; &#124; grep -m1 &quot;Configured Capacity:&quot; &#124; awk &#039;{print $3}&#039;`
&lt;     dfs_total=`expr $dfs_total / 1024 / 1024`
     dfs_total=`echo -e &quot;$tmp_vals&quot; &#124; grep -m1 &quot;Total raw bytes:&quot; &#124; awk &#039;{print $4}&#039;`
&gt;     dfs_total=`expr ${dfs_total} / 1024 / 1024`</description>
		<content:encoded><![CDATA[<p>Changes to make it work with 0.20.1</p>
<p>124,126c124,125<br />
&lt;     dfs_used=`echo -e &quot;$tmp_vals&quot; | grep -m1 &quot;DFS Used:&quot; | awk &#039;{print $3}&#039;`<br />
&lt;     dfs_used=`expr $dfs_used / 1024 / 1024`<br />
     dfs_used=`echo -e &#8220;$tmp_vals&#8221; | grep -m1 &#8220;Used raw bytes:&#8221; | awk &#8216;{print $4}&#8217;`<br />
&gt;     dfs_used=`expr ${dfs_used} / 1024 / 1024`<br />
128,130c127,128<br />
&lt;     dfs_total=`echo -e &quot;$tmp_vals&quot; | grep -m1 &quot;Configured Capacity:&quot; | awk &#039;{print $3}&#039;`<br />
&lt;     dfs_total=`expr $dfs_total / 1024 / 1024`<br />
     dfs_total=`echo -e &#8220;$tmp_vals&#8221; | grep -m1 &#8220;Total raw bytes:&#8221; | awk &#8216;{print $4}&#8217;`<br />
&gt;     dfs_total=`expr ${dfs_total} / 1024 / 1024`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Adolphs</title>
		<link>http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/comment-page-1/#comment-4512</link>
		<dc:creator>Mike Adolphs</dc:creator>
		<pubDate>Thu, 17 Sep 2009 06:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.matejunkie.com/?p=1110#comment-4512</guid>
		<description>Thanks for the example. I&#039;ll alter the plugin within the next days so that it&#039;ll be useable for 0.20.x or higher as well. We&#039;re still using 0.18.3 here since it&#039;s quite stable.</description>
		<content:encoded><![CDATA[<p>Thanks for the example. I&#8217;ll alter the plugin within the next days so that it&#8217;ll be useable for 0.20.x or higher as well. We&#8217;re still using 0.18.3 here since it&#8217;s quite stable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omar</title>
		<link>http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/comment-page-1/#comment-4510</link>
		<dc:creator>Omar</dc:creator>
		<pubDate>Wed, 16 Sep 2009 18:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.matejunkie.com/?p=1110#comment-4510</guid>
		<description>I think dfsadmin -report has changed in 0.20 release or possibly a localized output change?

sample of new output is below:

Configured Capacity: 19777590296576 (17.99 TB)
Present Capacity: 11989662912512 (10.9 TB)
DFS Remaining: 9583081635840 (8.72 TB)
DFS Used: 2406581276672 (2.19 TB)
DFS Used%: 20.07%
Under replicated blocks: 0
Blocks with corrupt replicas: 0
Missing blocks: 0

-------------------------------------------------
Datanodes available: 2 (2 total, 0 dead)

Name: 10.200.100.75:50010
Rack: /datacenter1/rack2
Decommission Status : Normal
Configured Capacity: 9888795148288 (8.99 TB)
DFS Used: 1203288698880 (1.09 TB)
Non DFS Used: 2953713659904 (2.69 TB)
DFS Remaining: 5731792789504(5.21 TB)
DFS Used%: 12.17%
DFS Remaining%: 57.96%
Last contact: Wed Sep 16 14:43:46 EDT 2009


Name: 10.200.100.170:50010
Rack: /datacenter1/rack1
Decommission Status : Normal
Configured Capacity: 9888795148288 (8.99 TB)
DFS Used: 1203292577792 (1.09 TB)
Non DFS Used: 4834213724160 (4.4 TB)
DFS Remaining: 3851288846336(3.5 TB)
DFS Used%: 12.17%
DFS Remaining%: 38.95%
Last contact: Wed Sep 16 14:43:47 EDT 2009</description>
		<content:encoded><![CDATA[<p>I think dfsadmin -report has changed in 0.20 release or possibly a localized output change?</p>
<p>sample of new output is below:</p>
<p>Configured Capacity: 19777590296576 (17.99 TB)<br />
Present Capacity: 11989662912512 (10.9 TB)<br />
DFS Remaining: 9583081635840 (8.72 TB)<br />
DFS Used: 2406581276672 (2.19 TB)<br />
DFS Used%: 20.07%<br />
Under replicated blocks: 0<br />
Blocks with corrupt replicas: 0<br />
Missing blocks: 0</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Datanodes available: 2 (2 total, 0 dead)</p>
<p>Name: 10.200.100.75:50010<br />
Rack: /datacenter1/rack2<br />
Decommission Status : Normal<br />
Configured Capacity: 9888795148288 (8.99 TB)<br />
DFS Used: 1203288698880 (1.09 TB)<br />
Non DFS Used: 2953713659904 (2.69 TB)<br />
DFS Remaining: 5731792789504(5.21 TB)<br />
DFS Used%: 12.17%<br />
DFS Remaining%: 57.96%<br />
Last contact: Wed Sep 16 14:43:46 EDT 2009</p>
<p>Name: 10.200.100.170:50010<br />
Rack: /datacenter1/rack1<br />
Decommission Status : Normal<br />
Configured Capacity: 9888795148288 (8.99 TB)<br />
DFS Used: 1203292577792 (1.09 TB)<br />
Non DFS Used: 4834213724160 (4.4 TB)<br />
DFS Remaining: 3851288846336(3.5 TB)<br />
DFS Used%: 12.17%<br />
DFS Remaining%: 38.95%<br />
Last contact: Wed Sep 16 14:43:47 EDT 2009</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Adolphs</title>
		<link>http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/comment-page-1/#comment-3795</link>
		<dc:creator>Mike Adolphs</dc:creator>
		<pubDate>Tue, 09 Jun 2009 07:05:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.matejunkie.com/?p=1110#comment-3795</guid>
		<description>Thanks Mary. I&#039;m already registered and uploaded two plugins. There&#039;s more to come within the next days.</description>
		<content:encoded><![CDATA[<p>Thanks Mary. I&#8217;m already registered and uploaded two plugins. There&#8217;s more to come within the next days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mary Starr</title>
		<link>http://www.matejunkie.com/hadoop-dfs-check-plugin-for-nagios/comment-page-1/#comment-3789</link>
		<dc:creator>Mary Starr</dc:creator>
		<pubDate>Mon, 08 Jun 2009 00:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.matejunkie.com/?p=1110#comment-3789</guid>
		<description>It looks like you have some good plugins for Nagios. We just launched a new website exchange.nagios.org. It would be great if you could add your plugins to the new site.
Thanks!</description>
		<content:encoded><![CDATA[<p>It looks like you have some good plugins for Nagios. We just launched a new website exchange.nagios.org. It would be great if you could add your plugins to the new site.<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
