<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Glog</title>
	<atom:link href="http://blog.aiama.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aiama.com</link>
	<description></description>
	<lastBuildDate>Thu, 05 Nov 2009 15:19:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by gerirgaudi</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-116</link>
		<dc:creator>gerirgaudi</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-116</guid>
		<description>Hi Nick, 

Yep, pretty much. Indeed, when I talk about passive checks in Nagios, I am referring to NSCA. The two key differences are that SNMP is complex to understand out of the box (and requires a lot of wiring to generate MIBs and such) and that you also get &quot;I&#039;m OK&quot; check points (so you know that reporting is taking place).</description>
		<content:encoded><![CDATA[<p>Hi Nick, </p>
<p>Yep, pretty much. Indeed, when I talk about passive checks in Nagios, I am referring to NSCA. The two key differences are that SNMP is complex to understand out of the box (and requires a lot of wiring to generate MIBs and such) and that you also get &#8220;I&#8217;m OK&#8221; check points (so you know that reporting is taking place).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by Nick Wilkens</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-113</link>
		<dc:creator>Nick Wilkens</dc:creator>
		<pubDate>Tue, 03 Nov 2009 22:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-113</guid>
		<description>I think what you are saying is similar to an SNMP trap, which Zenoss and Hyperic appear are all capable of handling (so is Nagios, but of course Nagios also does NSCA [http://nagios.sourceforge.net/docs/3_0/addons.html]).   

For instance, you don&#039;t want to poll every N minutes to see if a disk has failed, rather you have an SNMP trap setup to alert you when the disk has failed.</description>
		<content:encoded><![CDATA[<p>I think what you are saying is similar to an SNMP trap, which Zenoss and Hyperic appear are all capable of handling (so is Nagios, but of course Nagios also does NSCA [http://nagios.sourceforge.net/docs/3_0/addons.html]).   </p>
<p>For instance, you don&#8217;t want to poll every N minutes to see if a disk has failed, rather you have an SNMP trap setup to alert you when the disk has failed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by gerirgaudi</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-108</link>
		<dc:creator>gerirgaudi</dc:creator>
		<pubDate>Tue, 13 Oct 2009 11:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-108</guid>
		<description>&lt;blockquote&gt;Passive monitoring is possible via something like a Script Plugin to monitor the output of some activity. The script would be executed on a regular frequency (1 min, 5 min, 24 hours, etc)[...]&lt;/blockquote&gt;

In the context of the post, passive fault monitoring is defined by two key characteristics:
&lt;ul&gt;
 &lt;li&gt; it happens &lt;strong&gt;asynchronously&lt;/strong&gt;&lt;/li&gt;
 &lt;li&gt; it is &lt;strong&gt;intrinsic&lt;/strong&gt; to the component being monitored&lt;/li&gt;
&lt;/ul&gt;

There are, of course, exceptions. &quot;Keep-alives&quot; (regular &lt;em&gt;status OK&lt;/em&gt; reports) must be somewhat synchronous so that if something goes wrong and no OK reports take place, the monitoring server can flag it as a problem. Furthermore, there are components (such as appliances) for which it is simply impossible to have [usable] monitoring built-in (some SNMP implementations are rather broken), in which case, a proxy is necessary (asynchronicity is usually lost as well in this case). Finally, there are cases where what we want to monitor for is &lt;em&gt;external behavior&lt;/em&gt; (for instance, wher multiple components are involved in a transaction), for which active monitoring is the right tool.

What is, I think, a significant gain in the passive model is that I can save myself the step of watching for, parsing and interpreting output by having the monitoring intelligence built right in, taking place in real-time, and with a richer environment to drive conclussions as to the state of the process and the reasons behind said state, because the monitoring is taking place in the runtime environment. My preference, particularly for home-grown software, is to push as much of the monitoring smarts for a given component to the component itself (and, by extension, to the engineers writing said component) because it is the One True Source. None of this is to say that passive monitoring is the One and Only True Way.

In the realm of operations we write a fair number of tools to aid in running the environment. A lot of these tools perform their work in the background, for instance, moving logs back and forth or pushing changes to systems. If I control those tools, I will definitely make them use passive fault monitoring, and only pester me when necessary. No digestion of output needed. For engineering, where they write large amounts of code to make up the &lt;em&gt;product&lt;/em&gt; or &lt;em&gt;service&lt;/em&gt; being delivered, passive monitoring is likely the right answer. Take some application server performing database queries to build web pages being consumed by an end user. The best place to know that the running average database query time has slowed by 20% in the last five minutes is the application server itself. Again, no output to grok, and better yet, no polling schedules where swings in the metrics can return to normal.

It is, of course, possible to write these stats somewhere and have the Script Plugin read them. But that&#039;s an extra step I find no need to take. This, of course, requires bringing a lot of moving parts into the same wavelength. A solid definition for monitoring thresholds, procedures, responses and specifications must be in place, well documented and publicized to the appropriate parties. But having this done, contracts can be enacted so that those that are writing code know how they can raise awareness about something going amiss. These definitions are mosrly tool agnostic, but having them allows for levels of automation that are impossible otherwise.

I still believe that the summary of the post is true: Hyperic is not yet a &lt;strong&gt;full&lt;/strong&gt; Nagios replacement as far as passive monitoring is concerned. I don&#039;t simply want it to look like a push model from the outside (fakeable by increasing frequency): I want it to be a push model because I find said model (and I want to stress that I am referring to &lt;strong&gt;fault&lt;/strong&gt; monitoring) to be more accurate, resource friendly and easier to manage.</description>
		<content:encoded><![CDATA[<blockquote><p>Passive monitoring is possible via something like a Script Plugin to monitor the output of some activity. The script would be executed on a regular frequency (1 min, 5 min, 24 hours, etc)[...]</p></blockquote>
<p>In the context of the post, passive fault monitoring is defined by two key characteristics:</p>
<ul>
<li> it happens <strong>asynchronously</strong></li>
<li> it is <strong>intrinsic</strong> to the component being monitored</li>
</ul>
<p>There are, of course, exceptions. &#8220;Keep-alives&#8221; (regular <em>status OK</em> reports) must be somewhat synchronous so that if something goes wrong and no OK reports take place, the monitoring server can flag it as a problem. Furthermore, there are components (such as appliances) for which it is simply impossible to have [usable] monitoring built-in (some SNMP implementations are rather broken), in which case, a proxy is necessary (asynchronicity is usually lost as well in this case). Finally, there are cases where what we want to monitor for is <em>external behavior</em> (for instance, wher multiple components are involved in a transaction), for which active monitoring is the right tool.</p>
<p>What is, I think, a significant gain in the passive model is that I can save myself the step of watching for, parsing and interpreting output by having the monitoring intelligence built right in, taking place in real-time, and with a richer environment to drive conclussions as to the state of the process and the reasons behind said state, because the monitoring is taking place in the runtime environment. My preference, particularly for home-grown software, is to push as much of the monitoring smarts for a given component to the component itself (and, by extension, to the engineers writing said component) because it is the One True Source. None of this is to say that passive monitoring is the One and Only True Way.</p>
<p>In the realm of operations we write a fair number of tools to aid in running the environment. A lot of these tools perform their work in the background, for instance, moving logs back and forth or pushing changes to systems. If I control those tools, I will definitely make them use passive fault monitoring, and only pester me when necessary. No digestion of output needed. For engineering, where they write large amounts of code to make up the <em>product</em> or <em>service</em> being delivered, passive monitoring is likely the right answer. Take some application server performing database queries to build web pages being consumed by an end user. The best place to know that the running average database query time has slowed by 20% in the last five minutes is the application server itself. Again, no output to grok, and better yet, no polling schedules where swings in the metrics can return to normal.</p>
<p>It is, of course, possible to write these stats somewhere and have the Script Plugin read them. But that&#8217;s an extra step I find no need to take. This, of course, requires bringing a lot of moving parts into the same wavelength. A solid definition for monitoring thresholds, procedures, responses and specifications must be in place, well documented and publicized to the appropriate parties. But having this done, contracts can be enacted so that those that are writing code know how they can raise awareness about something going amiss. These definitions are mosrly tool agnostic, but having them allows for levels of automation that are impossible otherwise.</p>
<p>I still believe that the summary of the post is true: Hyperic is not yet a <strong>full</strong> Nagios replacement as far as passive monitoring is concerned. I don&#8217;t simply want it to look like a push model from the outside (fakeable by increasing frequency): I want it to be a push model because I find said model (and I want to stress that I am referring to <strong>fault</strong> monitoring) to be more accurate, resource friendly and easier to manage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by Mark Hinkle</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-107</link>
		<dc:creator>Mark Hinkle</dc:creator>
		<pubDate>Sat, 10 Oct 2009 10:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-107</guid>
		<description>Gerirgaudi,

Thanks for the clarification, I get your points now.</description>
		<content:encoded><![CDATA[<p>Gerirgaudi,</p>
<p>Thanks for the clarification, I get your points now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by Marty Messer</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-106</link>
		<dc:creator>Marty Messer</dc:creator>
		<pubDate>Thu, 08 Oct 2009 21:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-106</guid>
		<description>Passive monitoring is possible via something like a &lt;a href=&quot;http://support.hyperic.com/display/DOC/Script+Plugin&quot; title=&quot;Script Plugin&quot; rel=&quot;nofollow&quot;&gt;Script Plugin&lt;/a&gt; to monitor the output of some activity. The script would be executed on a regular frequency (1 min, 5 min, 24 hours, etc.) and the normal state would be &quot;all good&quot;, showing green in the HQ resource and Dashboard. And then if an exception occurs, state would become &quot;all bad&quot;, and the resource/dashboard would go red. And since HQ does a lot more than just up/down metrics, your script could also be tracking many other metrics of interest. Basically anything you can return in a name=value pair.

We&#039;ve used this same approach in many, many a Nagios-&gt;Hyperic migration.

It&#039;s not a push model, but it looks like it from the outside.</description>
		<content:encoded><![CDATA[<p>Passive monitoring is possible via something like a <a href="http://support.hyperic.com/display/DOC/Script+Plugin" title="Script Plugin" rel="nofollow">Script Plugin</a> to monitor the output of some activity. The script would be executed on a regular frequency (1 min, 5 min, 24 hours, etc.) and the normal state would be &#8220;all good&#8221;, showing green in the HQ resource and Dashboard. And then if an exception occurs, state would become &#8220;all bad&#8221;, and the resource/dashboard would go red. And since HQ does a lot more than just up/down metrics, your script could also be tracking many other metrics of interest. Basically anything you can return in a name=value pair.</p>
<p>We&#8217;ve used this same approach in many, many a Nagios-&gt;Hyperic migration.</p>
<p>It&#8217;s not a push model, but it looks like it from the outside.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by gerirgaudi</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-105</link>
		<dc:creator>gerirgaudi</dc:creator>
		<pubDate>Thu, 08 Oct 2009 18:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-105</guid>
		<description>Hi Mark,

Technically, I never claimed to prefer Nagios over Zenoss. I mentioned Zenoss as an example in the context that there is no mention of it in the Hyperic documentation, whereas Nagios has a section devoted to it especifically geared towards helping in migrating from Nagios to Hyperic (in fact, they have tools to crawl Nagios configuration files and import them into Hyperic). This leads to me to speculate that Hyperic sees current Nagios installations as a good source of potential Hyperic users, whereas Zenoss (for reasons known only to Hyperic) does not seem to be as appetizing. I suspect this has to do with raw numbers and probabilities (i.e., quantity), but it&#039;s all conjecture.

My last direct (and admittedly brief, since I had a local resource far more familiar with Zenoss that I was) contact with Zenoss was a couple of years ago. I mention this because much has probably changed since then, and I am therefore in no position to make any authoritative comparisons in regards to Zenoss. I will say however, that, at the time, we found Zenoss to be very SNMP-centric (in an environment where we had very little of it) and easy to bog down under load with active checks (the system population was fairly large). Having Nagios-based infrastructure that was performing well provided no incentive to migrate to Zenoss, particularly as brittle as it seemed to us.

My key point is that, as much as possible, I am in favor of passive test methodology for &lt;strong&gt;fault&lt;/strong&gt; monitoring because from my point of view, it is inherently highy distributed (given components are keeping track of their own health), takes advantage of levels of introspection not readily available with active checks (i.e., external poking mechanisms), and it&#039;s asynchronous (faults are reported as they happen, not &lt;em&gt;during the next check&lt;/em&gt;). This is not to say that everything should be passively monitored: it depends upon the semantics of the test itself, and, in many cases, it is impossible or impractical to do so. Regardless, Hyperic doesn&#039;t seem to do it: the agent model is really an extension of the active check model, where checks still poke some other entity and run on a schedule (but they do so on the client hosts). Zenoss, I believe, doesn&#039;t offer this capility either.

Whether the monitoring software is Python or C it almost irrelevant because I want (and have in many cases) put the onus of keeping track of health on the application itself. Thus, I have simple scripts or system software that is concerned about its own health, and my monitoring platform only has to be concerned about receiving status and acting upon it.

Clearly, none of this is really relevant to &lt;strong&gt;performance&lt;/strong&gt; monitoring (i.e., monitoring that isn&#039;t really about faults but about maintaning historical data about system load and other metrics along those lines). Zenoss did well in that regard, as does Hyperic.

I have been working on a more abstract post about my views on these ideas, but it is a complex subject, and one that, admittedly, is probably somewhat subjective. At the end of the day, I want simplicity, and there is much to be said for having a solid, well-designed template configuration in Nagios that lends itself to simple generating of host configurations from a CMDB that inherit the right properties from the right places. There is no denying that this is possibly doable with both Hyperic and Zenoss as well, but I&#039;m certainly not qualified (yet) to ascertain how difficult it might be (so far, my Hyperic experience has left at lot to be desired, but it takes time to hit the eureka moment when automating becomes an extension of your environment).</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>Technically, I never claimed to prefer Nagios over Zenoss. I mentioned Zenoss as an example in the context that there is no mention of it in the Hyperic documentation, whereas Nagios has a section devoted to it especifically geared towards helping in migrating from Nagios to Hyperic (in fact, they have tools to crawl Nagios configuration files and import them into Hyperic). This leads to me to speculate that Hyperic sees current Nagios installations as a good source of potential Hyperic users, whereas Zenoss (for reasons known only to Hyperic) does not seem to be as appetizing. I suspect this has to do with raw numbers and probabilities (i.e., quantity), but it&#8217;s all conjecture.</p>
<p>My last direct (and admittedly brief, since I had a local resource far more familiar with Zenoss that I was) contact with Zenoss was a couple of years ago. I mention this because much has probably changed since then, and I am therefore in no position to make any authoritative comparisons in regards to Zenoss. I will say however, that, at the time, we found Zenoss to be very SNMP-centric (in an environment where we had very little of it) and easy to bog down under load with active checks (the system population was fairly large). Having Nagios-based infrastructure that was performing well provided no incentive to migrate to Zenoss, particularly as brittle as it seemed to us.</p>
<p>My key point is that, as much as possible, I am in favor of passive test methodology for <strong>fault</strong> monitoring because from my point of view, it is inherently highy distributed (given components are keeping track of their own health), takes advantage of levels of introspection not readily available with active checks (i.e., external poking mechanisms), and it&#8217;s asynchronous (faults are reported as they happen, not <em>during the next check</em>). This is not to say that everything should be passively monitored: it depends upon the semantics of the test itself, and, in many cases, it is impossible or impractical to do so. Regardless, Hyperic doesn&#8217;t seem to do it: the agent model is really an extension of the active check model, where checks still poke some other entity and run on a schedule (but they do so on the client hosts). Zenoss, I believe, doesn&#8217;t offer this capility either.</p>
<p>Whether the monitoring software is Python or C it almost irrelevant because I want (and have in many cases) put the onus of keeping track of health on the application itself. Thus, I have simple scripts or system software that is concerned about its own health, and my monitoring platform only has to be concerned about receiving status and acting upon it.</p>
<p>Clearly, none of this is really relevant to <strong>performance</strong> monitoring (i.e., monitoring that isn&#8217;t really about faults but about maintaning historical data about system load and other metrics along those lines). Zenoss did well in that regard, as does Hyperic.</p>
<p>I have been working on a more abstract post about my views on these ideas, but it is a complex subject, and one that, admittedly, is probably somewhat subjective. At the end of the day, I want simplicity, and there is much to be said for having a solid, well-designed template configuration in Nagios that lends itself to simple generating of host configurations from a CMDB that inherit the right properties from the right places. There is no denying that this is possibly doable with both Hyperic and Zenoss as well, but I&#8217;m certainly not qualified (yet) to ascertain how difficult it might be (so far, my Hyperic experience has left at lot to be desired, but it takes time to hit the eureka moment when automating becomes an extension of your environment).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hyperic is not (yet?) a Full Nagios Replacement by Mark Hinkle</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-99</link>
		<dc:creator>Mark Hinkle</dc:creator>
		<pubDate>Thu, 08 Oct 2009 12:46:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comment-99</guid>
		<description>I notice you mentioned &lt;a href=&quot;http://community.zenoss.org&quot; rel=&quot;nofollow&quot;&gt;Zenoss Core&lt;/a&gt; as an option for monitoring but that you prefer Nagios. I am curious given that Zenoss has a lot of additional capabilities like automatic discovery of devices, a little more sophisticated alerting system, syslog monitoring and additional features why you didn&#039;t choose Zenoss for fault monitoring. Plus Zenoss combines fault monitoring &lt;i&gt;and&lt;/i&gt; performance monitoring. Also Zenoss can execute Nagios plugins if you have favorites. I also noticed in an earlier post that you do some Python programming which I would think would be a reason for you to consider using Zenoss which is a python application. 

I would love to get your thoughts.</description>
		<content:encoded><![CDATA[<p>I notice you mentioned <a href="http://community.zenoss.org" rel="nofollow">Zenoss Core</a> as an option for monitoring but that you prefer Nagios. I am curious given that Zenoss has a lot of additional capabilities like automatic discovery of devices, a little more sophisticated alerting system, syslog monitoring and additional features why you didn&#8217;t choose Zenoss for fault monitoring. Plus Zenoss combines fault monitoring <i>and</i> performance monitoring. Also Zenoss can execute Nagios plugins if you have favorites. I also noticed in an earlier post that you do some Python programming which I would think would be a reason for you to consider using Zenoss which is a python application. </p>
<p>I would love to get your thoughts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sense of Humor in Product Naming by Jonathan Aquino</title>
		<link>http://blog.aiama.com/2009/07/02/sense-of-humor-in-product-naming/#comment-68</link>
		<dc:creator>Jonathan Aquino</dc:creator>
		<pubDate>Fri, 03 Jul 2009 04:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/07/02/sense-of-humor-in-product-naming/#comment-68</guid>
		<description>Catchy!</description>
		<content:encoded><![CDATA[<p>Catchy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vote to Bring Back Atlassian&#8217;s Stimulus Package by gerirgaudi</title>
		<link>http://blog.aiama.com/2009/07/01/vote-to-bring-back-atlassians-stimulus-package/#comment-67</link>
		<dc:creator>gerirgaudi</dc:creator>
		<pubDate>Thu, 02 Jul 2009 18:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/07/01/vote-to-bring-back-atlassians-stimulus-package/#comment-67</guid>
		<description>Hi Ludovic,

Good to hear from you! 

I actually like XWiki quite a bit and have been playing with it here and there (time being one of those rather difficult to come by resources). It really comes down to &lt;em&gt;how fast I can get the wiki up and running&lt;/em&gt;, and the major dependency has nothing to do with the quality of XWiki or Confluence (I do think they&#039;re both top of the line products) but my familiarity with them. I have been a Confluence (and JIRA) user and admin for quite some time now, which allows me to have Confluence up and running in short order. Then there is the question of &lt;em&gt;support&lt;/em&gt; (as in &lt;strong&gt;my&lt;/strong&gt; ability to answer questions or troubleshoot issues, not support from XWiki or Atlassian).

As it turns out, a &lt;a href=&quot;http://skife.org/&quot; rel=&quot;nofollow&quot;&gt;gracious soul&lt;/a&gt; donated a Confluence license, so I&#039;ll get those $5 to work this weekend, but I will continue to explore XWiki as time permits, because the scripting capabilities you mention are certainly quite useful and a huge plus in XWiki&#039;s favor.</description>
		<content:encoded><![CDATA[<p>Hi Ludovic,</p>
<p>Good to hear from you! </p>
<p>I actually like XWiki quite a bit and have been playing with it here and there (time being one of those rather difficult to come by resources). It really comes down to <em>how fast I can get the wiki up and running</em>, and the major dependency has nothing to do with the quality of XWiki or Confluence (I do think they&#8217;re both top of the line products) but my familiarity with them. I have been a Confluence (and JIRA) user and admin for quite some time now, which allows me to have Confluence up and running in short order. Then there is the question of <em>support</em> (as in <strong>my</strong> ability to answer questions or troubleshoot issues, not support from XWiki or Atlassian).</p>
<p>As it turns out, a <a href="http://skife.org/" rel="nofollow">gracious soul</a> donated a Confluence license, so I&#8217;ll get those $5 to work this weekend, but I will continue to explore XWiki as time permits, because the scripting capabilities you mention are certainly quite useful and a huge plus in XWiki&#8217;s favor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vote to Bring Back Atlassian&#8217;s Stimulus Package by Ludovic Dubost</title>
		<link>http://blog.aiama.com/2009/07/01/vote-to-bring-back-atlassians-stimulus-package/#comment-66</link>
		<dc:creator>Ludovic Dubost</dc:creator>
		<pubDate>Wed, 01 Jul 2009 22:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aiama.com/2009/07/01/vote-to-bring-back-atlassians-stimulus-package/#comment-66</guid>
		<description>You should stick with XWiki, not because Confluence is bad, but because it will get more and more expensive (that&#039;s what happens to proprietary software eventually) and also because XWiki will get better and better.

And you might be amazed by what XWiki can offer with it&#039;s scripting and structured content capabilities. See http://www.dzone.com/links/jazoon_day_2_xwiki.html

Disclaimer: I&#039;m the XWiki founder</description>
		<content:encoded><![CDATA[<p>You should stick with XWiki, not because Confluence is bad, but because it will get more and more expensive (that&#8217;s what happens to proprietary software eventually) and also because XWiki will get better and better.</p>
<p>And you might be amazed by what XWiki can offer with it&#8217;s scripting and structured content capabilities. See <a href="http://www.dzone.com/links/jazoon_day_2_xwiki.html" rel="nofollow">http://www.dzone.com/links/jazoon_day_2_xwiki.html</a></p>
<p>Disclaimer: I&#8217;m the XWiki founder</p>
]]></content:encoded>
	</item>
</channel>
</rss>
