<?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 for Nagios Community</title>
	<atom:link href="http://community.nagios.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://community.nagios.org</link>
	<description>Where the Nagios Community Connects</description>
	<lastBuildDate>Mon, 22 Jun 2009 14:24:18 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on check_cluster not working properly when all nodes report an &#8220;OK&#8221; state by Mike Kniaziewicz</title>
		<link>http://community.nagios.org/2009/06/18/check_cluster-not-working-properly-when-all-nodes-report-an-ok-state/comment-page-1/#comment-294</link>
		<dc:creator>Mike Kniaziewicz</dc:creator>
		<pubDate>Mon, 22 Jun 2009 14:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=577#comment-294</guid>
		<description>Great reply and thanks for the clarification. 

Hopefully this will clarify some problems users were having with the check_cluster command. The check_cluster command is great for checking all types of clusters. However, I have found the online documentation (gathered by a Google search) to only contain the same information. 

Once again thanks for the clarification and hopefully members of the community benefit from this exchange.</description>
		<content:encoded><![CDATA[<p>Great reply and thanks for the clarification. </p>
<p>Hopefully this will clarify some problems users were having with the check_cluster command. The check_cluster command is great for checking all types of clusters. However, I have found the online documentation (gathered by a Google search) to only contain the same information. </p>
<p>Once again thanks for the clarification and hopefully members of the community benefit from this exchange.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on check_cluster not working properly when all nodes report an &#8220;OK&#8221; state by tonvoon</title>
		<link>http://community.nagios.org/2009/06/18/check_cluster-not-working-properly-when-all-nodes-report-an-ok-state/comment-page-1/#comment-293</link>
		<dc:creator>tonvoon</dc:creator>
		<pubDate>Fri, 19 Jun 2009 01:31:21 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=577#comment-293</guid>
		<description>Mike,

You have fallen foul to the standard threshold definition. -c 1:3 means &quot;give me a critical when the value falls outside 1 to 3&quot;. Therefore, having 0 data points in a non-OK state will give a critical alert.

You can either run
  * -c 0:2, so it will alert when it gets to 3
  * -c @3:, where the @ means to alert from 3 onwards

My tests:

&lt;code&gt;
$ ./check_cluster -s -d 0,0,0 -c 0:2
CLUSTER OK: Service cluster: 3 ok, 0 warning, 0 unknown, 0 critical
$ ./check_cluster -s -d 0,0,2 -c 0:2
CLUSTER OK: Service cluster: 2 ok, 0 warning, 0 unknown, 1 critical
$ ./check_cluster -s -d 2,0,2 -c 0:2
CLUSTER OK: Service cluster: 1 ok, 0 warning, 0 unknown, 2 critical
$ ./check_cluster -s -d 2,2,2 -c 0:2
CLUSTER CRITICAL: Service cluster: 0 ok, 0 warning, 0 unknown, 3 critical

$ ./check_cluster -s -d 0,0,0 -c @3:
CLUSTER OK: Service cluster: 3 ok, 0 warning, 0 unknown, 0 critical
$ ./check_cluster -s -d 0,0,2 -c @3:
CLUSTER OK: Service cluster: 2 ok, 0 warning, 0 unknown, 1 critical
$ ./check_cluster -s -d 2,0,2 -c @3:
CLUSTER OK: Service cluster: 1 ok, 0 warning, 0 unknown, 2 critical
$ ./check_cluster -s -d 2,2,2 -c @3:
CLUSTER CRITICAL: Service cluster: 0 ok, 0 warning, 0 unknown, 3 critical
&lt;/code&gt;

I propose adding this to the help output for check_cluster:
&lt;code&gt;
Examples:
 check_cluster -s -d 2,0,2,0 -c @3:
    Will alert critical if there are 3 or more data points in a non-OK state
&lt;/code&gt;

Would that help?

Ton</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>You have fallen foul to the standard threshold definition. -c 1:3 means &#8220;give me a critical when the value falls outside 1 to 3&#8243;. Therefore, having 0 data points in a non-OK state will give a critical alert.</p>
<p>You can either run<br />
  * -c 0:2, so it will alert when it gets to 3<br />
  * -c @3:, where the @ means to alert from 3 onwards</p>
<p>My tests:</p>
<p><code><br />
$ ./check_cluster -s -d 0,0,0 -c 0:2<br />
CLUSTER OK: Service cluster: 3 ok, 0 warning, 0 unknown, 0 critical<br />
$ ./check_cluster -s -d 0,0,2 -c 0:2<br />
CLUSTER OK: Service cluster: 2 ok, 0 warning, 0 unknown, 1 critical<br />
$ ./check_cluster -s -d 2,0,2 -c 0:2<br />
CLUSTER OK: Service cluster: 1 ok, 0 warning, 0 unknown, 2 critical<br />
$ ./check_cluster -s -d 2,2,2 -c 0:2<br />
CLUSTER CRITICAL: Service cluster: 0 ok, 0 warning, 0 unknown, 3 critical</p>
<p>$ ./check_cluster -s -d 0,0,0 -c @3:<br />
CLUSTER OK: Service cluster: 3 ok, 0 warning, 0 unknown, 0 critical<br />
$ ./check_cluster -s -d 0,0,2 -c @3:<br />
CLUSTER OK: Service cluster: 2 ok, 0 warning, 0 unknown, 1 critical<br />
$ ./check_cluster -s -d 2,0,2 -c @3:<br />
CLUSTER OK: Service cluster: 1 ok, 0 warning, 0 unknown, 2 critical<br />
$ ./check_cluster -s -d 2,2,2 -c @3:<br />
CLUSTER CRITICAL: Service cluster: 0 ok, 0 warning, 0 unknown, 3 critical<br />
</code></p>
<p>I propose adding this to the help output for check_cluster:<br />
<code><br />
Examples:<br />
 check_cluster -s -d 2,0,2,0 -c @3:<br />
    Will alert critical if there are 3 or more data points in a non-OK state<br />
</code></p>
<p>Would that help?</p>
<p>Ton</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Nagios Performance Problems by Mike Kniaziewicz</title>
		<link>http://community.nagios.org/2009/05/06/debuggin-nagios-performance-problems/comment-page-1/#comment-292</link>
		<dc:creator>Mike Kniaziewicz</dc:creator>
		<pubDate>Fri, 19 Jun 2009 00:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=210#comment-292</guid>
		<description>I read Ben&#039;s article and it is very insightful. I would recommend everyone take a minute or two to read the article. Ben is dealing with a large enterprise; however, you will want to implement his recommendations for scalability purposes. 

Ben uses &quot;lsof&quot; to identify directories being impacted the hardest on the Nagios host. lsof is a great tool and seeing how Ben uses it is worth the read. He also mentions how to improve performance with proper scheduling of tasks.</description>
		<content:encoded><![CDATA[<p>I read Ben&#8217;s article and it is very insightful. I would recommend everyone take a minute or two to read the article. Ben is dealing with a large enterprise; however, you will want to implement his recommendations for scalability purposes. </p>
<p>Ben uses &#8220;lsof&#8221; to identify directories being impacted the hardest on the Nagios host. lsof is a great tool and seeing how Ben uses it is worth the read. He also mentions how to improve performance with proper scheduling of tasks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ping is just another four letter word, like fail or fake, unless properly deployed. by Mike Kniaziewicz</title>
		<link>http://community.nagios.org/2009/06/16/ping-is-just-another-four-letter-word-like-fail-or-fake-unless-properly-deployed/comment-page-1/#comment-291</link>
		<dc:creator>Mike Kniaziewicz</dc:creator>
		<pubDate>Thu, 18 Jun 2009 17:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=347#comment-291</guid>
		<description>My recommendation is to move away from the ping command to check system health. If you want to check the network health to a host then use the ping command. Ping is an excellent initial method for checking if a system is &quot;alive&quot; or not; however, what do you do with wireless devices? 

I am currently using a ping command to check a system&#039;s health, and you can read the article here: &lt;a href=&quot;http://tech.ebusinessjuncture.com/?p=85&quot; rel=&quot;nofollow&quot;&gt;Nagios: How to check a host, that for security reasons has ping disabled&lt;/a&gt;. When you process a ping command locally by pinging a loopback address you are engaging the operating system. What we are concentrating on here is the Nagios host&#039;s ability to connect to a client, run a command and receive a response. 

A &quot;ping&quot; from the Nagios host to a client does not engage the operating system. It engages the hardware, I do believe at the Networking layer of the OSI model. 

System Administrators do have a lot of process to check throughout the enterprise. Using a service check for a check_command reduces the number of commands running against a host by 1. So, by eliminating just one command you have in reality reduced the network load by 2000 commands in a large host environment. 

Thanks for your question and I hope my thoughts in regard to the &quot;ping&quot; command are a little clearer.</description>
		<content:encoded><![CDATA[<p>My recommendation is to move away from the ping command to check system health. If you want to check the network health to a host then use the ping command. Ping is an excellent initial method for checking if a system is &#8220;alive&#8221; or not; however, what do you do with wireless devices? </p>
<p>I am currently using a ping command to check a system&#8217;s health, and you can read the article here: <a href="http://tech.ebusinessjuncture.com/?p=85" rel="nofollow">Nagios: How to check a host, that for security reasons has ping disabled</a>. When you process a ping command locally by pinging a loopback address you are engaging the operating system. What we are concentrating on here is the Nagios host&#8217;s ability to connect to a client, run a command and receive a response. </p>
<p>A &#8220;ping&#8221; from the Nagios host to a client does not engage the operating system. It engages the hardware, I do believe at the Networking layer of the OSI model. </p>
<p>System Administrators do have a lot of process to check throughout the enterprise. Using a service check for a check_command reduces the number of commands running against a host by 1. So, by eliminating just one command you have in reality reduced the network load by 2000 commands in a large host environment. </p>
<p>Thanks for your question and I hope my thoughts in regard to the &#8220;ping&#8221; command are a little clearer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ping is just another four letter word, like fail or fake, unless properly deployed. by mathiear</title>
		<link>http://community.nagios.org/2009/06/16/ping-is-just-another-four-letter-word-like-fail-or-fake-unless-properly-deployed/comment-page-1/#comment-290</link>
		<dc:creator>mathiear</dc:creator>
		<pubDate>Thu, 18 Jun 2009 11:28:27 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=347#comment-290</guid>
		<description>Hi Mike,

Thanks for your reply too.

I understand your point but still, for me it was quite obvious that you can&#039;t say &quot;processes are running because your ping is OK&quot;.

As a SysAdmin you have so much more things to check.

Yes.. I like the way the Nagios Community is moving ! So I&#039;m quite happy to participate.</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>Thanks for your reply too.</p>
<p>I understand your point but still, for me it was quite obvious that you can&#8217;t say &#8220;processes are running because your ping is OK&#8221;.</p>
<p>As a SysAdmin you have so much more things to check.</p>
<p>Yes.. I like the way the Nagios Community is moving ! So I&#8217;m quite happy to participate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ping is just another four letter word, like fail or fake, unless properly deployed. by Mike Kniaziewicz</title>
		<link>http://community.nagios.org/2009/06/16/ping-is-just-another-four-letter-word-like-fail-or-fake-unless-properly-deployed/comment-page-1/#comment-289</link>
		<dc:creator>Mike Kniaziewicz</dc:creator>
		<pubDate>Wed, 17 Jun 2009 23:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=347#comment-289</guid>
		<description>Thanks for your replies to this post. Your thoughts are very well received and intuitive.

Now, if you want to use the &quot;ping&quot; command to check network latency, then that is fine; however, &quot;ping&quot; does not tell you if the operating system if functioning properly. As a Linux/Unix Systems Administrator, I have seen countless times when the hardware will return an &quot;OK&quot; status, but the software is not functioning properly using the ping command.  To see this point in action, launch a continuous &quot;ping&quot; command against a host and bounce the host. I can assure you the ping will reply back much sooner than you are able to log into the host. Even longer if the host has databases to start. 

My concerns rest with the end user being able to perform his or her tasks on the server. Using a service check will show a problem with the operating system. If the NRPE daemon times out with a service check, then I need to investigate deeper the problem. Many times I have discovered the xinetd daemon was not running after a system restart. Other times I have discovered a process consuming enough resources to slow the system down considerably. Using a &quot;ping&quot; command to check the host would have never revealed the problem. 

In regard to consumption of bandwidth, well the comment points and basic mathematics are valid. However, I am considering the other traffic flowing to and from servers. My organization&#039;s stores have very narrow bandwidth through which must flow credit card validations, pricing and inventory updates as well as other Nagios service checks that are occurring throughout the course of a business cycle. If I can obtain valuable monitoring information, like checking directory size or checking the &quot;sendmail&quot; process, wouldn&#039;t that be more advantageous for checking a host&#039;s up/down status?

The article focuses on maximization of Nagios&#039;s service check ability. The &quot;ping&quot; command is very valuable; however, I would recommend only using it on systems that require minimal checks. If you really want the entire value of &quot;ping&quot; I would suggest using &quot;tracert,&quot; so you can identify where the latency is on the network. You also do not want Nagios checks to become an issue on the enterprise network or systems.

Thank you both for responding to this article. GREAT insight and both I and the community appreciate your posts.</description>
		<content:encoded><![CDATA[<p>Thanks for your replies to this post. Your thoughts are very well received and intuitive.</p>
<p>Now, if you want to use the &#8220;ping&#8221; command to check network latency, then that is fine; however, &#8220;ping&#8221; does not tell you if the operating system if functioning properly. As a Linux/Unix Systems Administrator, I have seen countless times when the hardware will return an &#8220;OK&#8221; status, but the software is not functioning properly using the ping command.  To see this point in action, launch a continuous &#8220;ping&#8221; command against a host and bounce the host. I can assure you the ping will reply back much sooner than you are able to log into the host. Even longer if the host has databases to start. </p>
<p>My concerns rest with the end user being able to perform his or her tasks on the server. Using a service check will show a problem with the operating system. If the NRPE daemon times out with a service check, then I need to investigate deeper the problem. Many times I have discovered the xinetd daemon was not running after a system restart. Other times I have discovered a process consuming enough resources to slow the system down considerably. Using a &#8220;ping&#8221; command to check the host would have never revealed the problem. </p>
<p>In regard to consumption of bandwidth, well the comment points and basic mathematics are valid. However, I am considering the other traffic flowing to and from servers. My organization&#8217;s stores have very narrow bandwidth through which must flow credit card validations, pricing and inventory updates as well as other Nagios service checks that are occurring throughout the course of a business cycle. If I can obtain valuable monitoring information, like checking directory size or checking the &#8220;sendmail&#8221; process, wouldn&#8217;t that be more advantageous for checking a host&#8217;s up/down status?</p>
<p>The article focuses on maximization of Nagios&#8217;s service check ability. The &#8220;ping&#8221; command is very valuable; however, I would recommend only using it on systems that require minimal checks. If you really want the entire value of &#8220;ping&#8221; I would suggest using &#8220;tracert,&#8221; so you can identify where the latency is on the network. You also do not want Nagios checks to become an issue on the enterprise network or systems.</p>
<p>Thank you both for responding to this article. GREAT insight and both I and the community appreciate your posts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ping is just another four letter word, like fail or fake, unless properly deployed. by mathiear</title>
		<link>http://community.nagios.org/2009/06/16/ping-is-just-another-four-letter-word-like-fail-or-fake-unless-properly-deployed/comment-page-1/#comment-288</link>
		<dc:creator>mathiear</dc:creator>
		<pubDate>Wed, 17 Jun 2009 13:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=347#comment-288</guid>
		<description>Hi Mike,

I have exactly the same concerns as smetj when I read your article.

Pinging host is obviously important to check the network stack and less heavy than NRPE on the Bandwidth front.

Of course if you want to check resources on the OS, NRPE is a good choice but it&#039;s an other question.

I also would like to mention that NRPE is running fine on SunOS :)

I&#039;m sorry but I don&#039;t really see the point of this article, except discovering NRPE.

Arnaud</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>I have exactly the same concerns as smetj when I read your article.</p>
<p>Pinging host is obviously important to check the network stack and less heavy than NRPE on the Bandwidth front.</p>
<p>Of course if you want to check resources on the OS, NRPE is a good choice but it&#8217;s an other question.</p>
<p>I also would like to mention that NRPE is running fine on SunOS <img src='http://community.nagios.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m sorry but I don&#8217;t really see the point of this article, except discovering NRPE.</p>
<p>Arnaud</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ping is just another four letter word, like fail or fake, unless properly deployed. by smetj</title>
		<link>http://community.nagios.org/2009/06/16/ping-is-just-another-four-letter-word-like-fail-or-fake-unless-properly-deployed/comment-page-1/#comment-287</link>
		<dc:creator>smetj</dc:creator>
		<pubDate>Wed, 17 Jun 2009 09:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=347#comment-287</guid>
		<description>Hi Mike,

After reading your article I have a couple of concerns I want to share:

•	Not using a ping initiated from a monitoring server to a remote host makes you lose important information such as network response speed between a monitoring server and a remote host.
You will not be able to see degradation in the network link quality.

•	You loose the ability to check if a remote host is available through the network from a monitoring perspective. You&#039;re not testing the network path.
Granted when the host can’t be reached over network, your nrpe check will fail too, … But is this because of the network or because the nrpe daemon is down or malfunctioning on the remote host?
This way, its clunky and unclear to create a dependency between your host executed checks and the network connectivity check.

•	*quote*In reality a ping will only tell you if (assuming you do not have any firewalls between the “pinger” and “pingee”) whether the network interface card (NIC) has power and is able to respond.
Ping tells nothing about the state of the operating system.*quote*
I agree you can&#039;t determine the complete state of an OS through a simple ping, but it&#039;s the OS network stack which &quot;assigns&quot; the IP address to your NIC which on it’s turn is used by a remote host to ping to. Merely powering a NIC will not suffice (for example have a look at http://en.wikipedia.org/wiki/Wake-on-LAN#How_it_works) to get an ICMP reply.  The OS network stack must be able to reply.

•	Following your philosophy you will end up in 2 ways of determining a remote system is available on the network as you can&#039;t implement the same approach for routers, switches, firewall, whatever device which can&#039;t run the NRPE daemon.  Although this doesn&#039;t look like a big deal, in a very large network you want to make sure your tests results should have the same meaning across devices.

•	*quote*Ping also consumes bandwidth. Bandwidth usage may appear to be negligible in regard to a small enterprise ( less than 100 host). However, what about larger enterprises? 
In order to be proactive in regard to host issues, the enterprise should perform a host-alive check on every server, switch and router every five minutes. Now we can start to see the bandwidth problem.*quote*

The default ping check in Nagios is: check_ping -H ‘remote_host&#039; -w 5000,100% -c 5000,100% -p 1
When executed, this check consumes 196 bytes of data.
When executed every 5 minutes, 1 host will consume 94080 bytes per day.
Having a fairly large setup of let’s say 2000 hosts this makes 188160000 bytes on icmp checks per day, which equals to merely 179.4 megabyte per day.

If you send 4 packets instead of one for the check_ping check in Nagios you end up with 717.6 Mb per day, which still is NOTHING if you have an infrastructure capable of hosting 2000 devices!

I didn’t try out how much bandwidth your proposal consumes but it must be most definitely more, as you’re working with a tcp session check_nrpe doing sending a request to the nrpe_daemon which on its turn replies back.  That kind of defeats a big chunk of your purpose.</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>After reading your article I have a couple of concerns I want to share:</p>
<p>•	Not using a ping initiated from a monitoring server to a remote host makes you lose important information such as network response speed between a monitoring server and a remote host.<br />
You will not be able to see degradation in the network link quality.</p>
<p>•	You loose the ability to check if a remote host is available through the network from a monitoring perspective. You&#8217;re not testing the network path.<br />
Granted when the host can’t be reached over network, your nrpe check will fail too, … But is this because of the network or because the nrpe daemon is down or malfunctioning on the remote host?<br />
This way, its clunky and unclear to create a dependency between your host executed checks and the network connectivity check.</p>
<p>•	*quote*In reality a ping will only tell you if (assuming you do not have any firewalls between the “pinger” and “pingee”) whether the network interface card (NIC) has power and is able to respond.<br />
Ping tells nothing about the state of the operating system.*quote*<br />
I agree you can&#8217;t determine the complete state of an OS through a simple ping, but it&#8217;s the OS network stack which &#8220;assigns&#8221; the IP address to your NIC which on it’s turn is used by a remote host to ping to. Merely powering a NIC will not suffice (for example have a look at <a href="http://en.wikipedia.org/wiki/Wake-on-LAN#How_it_works)" rel="nofollow">http://en.wikipedia.org/wiki/Wake-on-LAN#How_it_works)</a> to get an ICMP reply.  The OS network stack must be able to reply.</p>
<p>•	Following your philosophy you will end up in 2 ways of determining a remote system is available on the network as you can&#8217;t implement the same approach for routers, switches, firewall, whatever device which can&#8217;t run the NRPE daemon.  Although this doesn&#8217;t look like a big deal, in a very large network you want to make sure your tests results should have the same meaning across devices.</p>
<p>•	*quote*Ping also consumes bandwidth. Bandwidth usage may appear to be negligible in regard to a small enterprise ( less than 100 host). However, what about larger enterprises?<br />
In order to be proactive in regard to host issues, the enterprise should perform a host-alive check on every server, switch and router every five minutes. Now we can start to see the bandwidth problem.*quote*</p>
<p>The default ping check in Nagios is: check_ping -H ‘remote_host&#8217; -w 5000,100% -c 5000,100% -p 1<br />
When executed, this check consumes 196 bytes of data.<br />
When executed every 5 minutes, 1 host will consume 94080 bytes per day.<br />
Having a fairly large setup of let’s say 2000 hosts this makes 188160000 bytes on icmp checks per day, which equals to merely 179.4 megabyte per day.</p>
<p>If you send 4 packets instead of one for the check_ping check in Nagios you end up with 717.6 Mb per day, which still is NOTHING if you have an infrastructure capable of hosting 2000 devices!</p>
<p>I didn’t try out how much bandwidth your proposal consumes but it must be most definitely more, as you’re working with a tcp session check_nrpe doing sending a request to the nrpe_daemon which on its turn replies back.  That kind of defeats a big chunk of your purpose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Launch of the new Nagios Exchange ! by me.yahoo.com/a/7ikdMAI_q</title>
		<link>http://community.nagios.org/2009/06/03/launch-of-the-new-nagios-exchange/comment-page-1/#comment-280</link>
		<dc:creator>me.yahoo.com/a/7ikdMAI_q</dc:creator>
		<pubDate>Mon, 08 Jun 2009 18:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=295#comment-280</guid>
		<description>If I understand correctly, monitoringexchange.org is related to the Icinga fork of Nagios. 

-= Stefan

(For those interested: I used OpenID to log into this site, which seems to result in a very ugly username. I cannot change it.)</description>
		<content:encoded><![CDATA[<p>If I understand correctly, monitoringexchange.org is related to the Icinga fork of Nagios. </p>
<p>-= Stefan</p>
<p>(For those interested: I used OpenID to log into this site, which seems to result in a very ugly username. I cannot change it.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Launch of the new Nagios Exchange ! by egalstad</title>
		<link>http://community.nagios.org/2009/06/03/launch-of-the-new-nagios-exchange/comment-page-1/#comment-279</link>
		<dc:creator>egalstad</dc:creator>
		<pubDate>Sun, 07 Jun 2009 14:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://community.nagios.org/?p=295#comment-279</guid>
		<description>Different, but related.  The old nagiosexchange.org site was redirected and promoted a fork of Nagios.   I felt this was a great disservice to all the community members who contributed to Nagios over the past 10 years, so I made the decision to launch a new Nagios Exchange.</description>
		<content:encoded><![CDATA[<p>Different, but related.  The old nagiosexchange.org site was redirected and promoted a fork of Nagios.   I felt this was a great disservice to all the community members who contributed to Nagios over the past 10 years, so I made the decision to launch a new Nagios Exchange.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
