<?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>Tobias Scherbaum &#187; Nagios</title>
	<atom:link href="http://blog.scherbaum.info/category/nagios/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.scherbaum.info</link>
	<description>Tagebuch eines Hardwaresammlers ...</description>
	<lastBuildDate>Wed, 10 Mar 2010 20:00:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>cucumber-nagios: Mach mir den Hamster!</title>
		<link>http://blog.scherbaum.info/2010/02/07/cucumber-nagios-mach-mir-den-hamster/</link>
		<comments>http://blog.scherbaum.info/2010/02/07/cucumber-nagios-mach-mir-den-hamster/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 12:46:05 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Nagios]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=616</guid>
		<description><![CDATA[Mit den üblichen Check-Plugins welche Nagios von Haus aus mitbringt, lässt sich die Verfügbarkeit von Diensten wunderbar prüfen. Hier beginnt aber auch schon das Dilemma: Die Verfügbarkeit eines Dienstes sagt noch nicht wirklich viel über die praktische Nutzbarkeit des Dienstes aus. Ein Webserver kann weiter munter Webseiten mit dem Status-Code 200 ausliefern, auch wenn die [...]]]></description>
			<content:encoded><![CDATA[<p>Mit den üblichen Check-Plugins welche Nagios von Haus aus mitbringt, lässt sich die Verfügbarkeit von Diensten wunderbar prüfen. Hier beginnt aber auch schon das Dilemma: Die Verfügbarkeit eines Dienstes sagt noch nicht wirklich viel über die praktische Nutzbarkeit des Dienstes aus. Ein Webserver kann weiter munter Webseiten mit dem Status-Code 200 ausliefern, auch wenn die Webseite für den Nutzer praktisch nicht mehr nutzbar ist. Stellen Sie sich die eBay-Webseite ohne funktionierende Suchmöglichkeit vor &#8211; die Seite ist zwar grundsätzlich verfügbar, ein für den Nutzer wichtiger Bestandteil der Funktionalität ist jedoch nicht. </p>
<p>Brauchte man bisher entweder einen Hamster, der regelmäßig genau diese Funktionalität prüfte oder zumindest grundlegende Perl-Kenntnisse und etwas Zeit um ein eigenes Check-Plugin zu programmieren, gibt es mit <em>cucumber-nagios</em> eine echte Alternative. Exemplarisch wollen wir die Suchfunktion auf der O&#8217;Reilly Webseite prüfen und sicherstellen, dass das Praxisbuch Nagios im Online-Katalog gefunden werden kann. Lassen Sie uns den Hamster wieder in den Käfig bringen ;)</p>
<p><em>cucumber-nagios</em> ist in der Programmiersprache Ruby entwickelt und wird als &#8220;RubyGem&#8221; verteilt, vergleichbar mit dem CPAN von Perl. Die Installation inklusive aller benötigten Abhängigkeiten geht folglich recht einfach vonstatten, solange Sie <em>ruby</em> und <em>rubygems</em> bereits installiert haben &#8211; die Pakete hierzu sind jedoch in aktuellen Linux-Distributionen bereits vorhanden.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ gem <span style="color: #c20cb9; font-weight: bold;">install</span> cucumber-nagios</pre></div></div>

<p>Dies installiert nun das Programm mitsamt weiterer benötigter Ruby-Erweiterungen &#8211; wenn Sie den Befehl als normaler, nicht-privilegierter Nutzer ausführen, werden die Pakete im <em>~/.gem</em> Verzeichnis des aktuellen Benutzers installiert. Hier ist dann noch die Anpassung der <em>$PATH</em>-Variable erforderlich, etwa wie folgt:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PATH</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PATH</span>:/home/tobias/.gem/ruby/1.8/bin&quot;</span></pre></div></div>

<p>Nun können wir auch schon starten und ein erstes Projekt erzeugen &#8211; jede Prüfung, die Sie später als eigenständigen Service in Nagios überwachen wollen entspricht einem Projekt.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ cucumber-nagios-gen project oreilly
Generating with project generator:
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  lib<span style="color: #000000; font-weight: bold;">/</span>generators<span style="color: #000000; font-weight: bold;">/</span>feature<span style="color: #000000; font-weight: bold;">/%</span>feature_name<span style="color: #000000; font-weight: bold;">%</span>_steps.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  README
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>steps<span style="color: #000000; font-weight: bold;">/</span>result_steps.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>steps<span style="color: #000000; font-weight: bold;">/</span>benchmark_steps.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>steps<span style="color: #000000; font-weight: bold;">/</span>webrat_steps.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>steps<span style="color: #000000; font-weight: bold;">/</span>ssh_steps.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>support<span style="color: #000000; font-weight: bold;">/</span>nagios.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>support<span style="color: #000000; font-weight: bold;">/</span>env.rb
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  .gitignore
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  .bzrignore
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  Gemfile
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  bin<span style="color: #000000; font-weight: bold;">/</span>cucumber-nagios-gen
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  bin<span style="color: #000000; font-weight: bold;">/</span>cucumber-nagios
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  lib<span style="color: #000000; font-weight: bold;">/</span>generators<span style="color: #000000; font-weight: bold;">/</span>feature<span style="color: #000000; font-weight: bold;">/%</span>feature_name<span style="color: #000000; font-weight: bold;">%</span>.feature
Your new cucumber-nagios project is <span style="color: #000000; font-weight: bold;">set</span> up.</pre></div></div>

<p>Im nächsten Schritt sind nun die benötigten RubyGems in das Projekt zu integrieren. Dies ermöglicht das Projekt später auf dem Nagios-Server einfach zu deployen.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> oreilly
oreilly $ gem bundle</pre></div></div>

<p>Zu guter letzt nun der wichtigste Part &#8211; wir legen fest, was wir wo prüfen wollen. Zunächst fügen wir dem zuvor angelegten Projekt ein Feature hinzu. Wichtig hierbei ist, den cucumber-nagios Generator des Projekts zu nutzen. Dieser benötigt zwei Argumente: Eine URL und einen Namen des Features.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">oreilly $ bin<span style="color: #000000; font-weight: bold;">/</span>cucumber-nagios-gen feature www.oreilly.de search
Generating with feature generator:
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>www.oreilly.de<span style="color: #000000; font-weight: bold;">/</span>search.feature
     <span style="color: #7a0874; font-weight: bold;">&#91;</span>ADDED<span style="color: #7a0874; font-weight: bold;">&#93;</span>  features<span style="color: #000000; font-weight: bold;">/</span>www.oreilly.de<span style="color: #000000; font-weight: bold;">/</span>steps<span style="color: #000000; font-weight: bold;">/</span>search_steps.rb</pre></div></div>

<p>In der Datei <em>features/www.oreilly.de/search.feature</em> beschreiben wir nun unser Prüfszenario. In das <em>tfq</em> benannte Suchfeld geben wir <em>nagios</em> ein, drücken den <em>Los</em>-Knopf und die darauf folgende Katalogseite soll den Text <em>Praxisbuch Nagios</em> enthalten.</p>
<pre>Feature: www.oreilly.de
  It should be up

  Scenario: Visiting home page
    When I go to http://www.oreilly.de
    And I fill in "tfq" with "nagios"
    And I press "Los"
    Then I should see "Praxisbuch Nagios"
</pre>
<p>&#8230; und fertig. Nun können wir unser Prüfszenario direkt ausprobieren:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">oreilly $ bin<span style="color: #000000; font-weight: bold;">/</span>cucumber-nagios features<span style="color: #000000; font-weight: bold;">/</span>www.oreilly.de<span style="color: #000000; font-weight: bold;">/</span>search.feature 
Critical: <span style="color: #000000;">0</span>, Warning: <span style="color: #000000;">0</span>, <span style="color: #000000;">4</span> okay <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #007800;">passed</span>=<span style="color: #000000;">4</span>, <span style="color: #007800;">failed</span>=<span style="color: #000000;">0</span>, <span style="color: #007800;">nosteps</span>=<span style="color: #000000;">0</span>, <span style="color: #007800;">total</span>=<span style="color: #000000;">4</span></pre></div></div>

<p><em>cucumber-nagios</em> wertet jeden einzelnen der 4 Schritte als einzelne Prüfung, sowohl die Ereichbarkeit der Webseite, das Vorhandensein des Suchfeldes sowie des <em>Los</em>-Buttons und des Suchergebnisses <em>Praxisbuch Nagios</em>.</p>
<p>Um nun diese Prüfung in Nagios integrieren zu können, kopieren Sie das gesamte Projekt-Verzeichnis in das Nagios-System und rufen dort innerhalb des Projektpfades einmalig den Befehlen <em>gem bundle</em> auf &#8211; schon ist die Prüfung einsatzbereit und kann in Ihr Nagios-System integriert werden.</p>
<p>Dieses kurze Beispiel vermittelt die Idee und Funktion hinter cucumber-nagios, mehr verrät die <a href="http://auxesis.github.com/cucumber-nagios/">Webseite</a> des Projekts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2010/02/07/cucumber-nagios-mach-mir-den-hamster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webseite zum Praxisbuch Nagios</title>
		<link>http://blog.scherbaum.info/2009/09/08/webseite-zum-praxisbuch-nagios/</link>
		<comments>http://blog.scherbaum.info/2009/09/08/webseite-zum-praxisbuch-nagios/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 20:15:03 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Aktuelles]]></category>
		<category><![CDATA[Nagios]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=506</guid>
		<description><![CDATA[Wie so einiges derzeit hat auch die Webseite zum Praxisbuch Nagios etwas länger gebraucht, ist aber nun endlich &#8220;fertig&#8221;. Auf der Webseite finden sich auch auf zahlreichen Wunsch hin Images für Virtualbox und VMWare Workstation/Server zum Download, die der CD zum Buch entsprechen. Achja, wie ich bereits twittern durfte: Es wird bereits nachgedruckt! :)
]]></description>
			<content:encoded><![CDATA[<p>Wie so einiges derzeit hat auch die Webseite zum <a href="http://www.praxisbuchnagios.de">Praxisbuch Nagios</a> etwas länger gebraucht, ist aber nun endlich &#8220;fertig&#8221;. Auf der Webseite finden sich auch auf zahlreichen Wunsch hin Images für Virtualbox und VMWare Workstation/Server zum Download, die der CD zum Buch entsprechen. Achja, wie ich bereits twittern durfte: Es wird bereits nachgedruckt! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2009/09/08/webseite-zum-praxisbuch-nagios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wazzup?</title>
		<link>http://blog.scherbaum.info/2009/08/04/wazzup/</link>
		<comments>http://blog.scherbaum.info/2009/08/04/wazzup/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 17:53:56 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Aktuelles]]></category>
		<category><![CDATA[Me, Myself and I]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[Sowas ...]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=498</guid>
		<description><![CDATA[So es eine entsprechende Studie geben würde (ich bin mir sogar sicher, dass es schon eine gibt) wäre bewiesen: Wer twittert, der bloggt weniger. Ich werde wohl auch dazu übergehen, eine wöchentliche Zusammenfassung der Tweets hier zu posten.
Vorweg die manuelle Zusammenfassung meines Twitterlebens:
- Praxisbuch Nagios jetzt auch auf der Nagios &#8220;Propaganda&#8221;-Seite: http://bit.ly/3IkDf8
- Praxisbuch Nagios in [...]]]></description>
			<content:encoded><![CDATA[<p>So es eine entsprechende Studie geben würde (ich bin mir sogar sicher, dass es schon eine gibt) wäre bewiesen: Wer twittert, der bloggt weniger. Ich werde wohl auch dazu übergehen, eine wöchentliche Zusammenfassung der Tweets hier zu posten.</p>
<p>Vorweg die manuelle Zusammenfassung meines Twitterlebens:<br />
- Praxisbuch Nagios jetzt auch auf der Nagios &#8220;Propaganda&#8221;-Seite: http://bit.ly/3IkDf8<br />
- Praxisbuch Nagios in den Top 100 Fachbüchern bei Amazon :)<br />
- Atom Dual-Core mit HT rockt! 260 kWh aufs Jahr gespart, damit rechnet sich das Board fix. Yay!<br />
- Lecker Bierchen probiert. Lecker! http://bit.ly/19299v<br />
- nochmal hrmpf. Vom clamd einen backtrace zu bekommen, wenn PaX ins Spiel kommt scheint nicht so einfach &#8230; *sigh*<br />
- Zurück aus Köln. Schokoladenmuseum besucht, am Rhein gesessen und nett was beim Libanesen gefuttert.</p>
<p>Achja, und nach Gravatar und Twitter bekommt Herr Scherbaum demnächst auch (wieder) einen Studentenausweis. Wenn da nur nicht die Mathematik wäre &#8230;</p>
<p>&#8230; und wer noch eine Idee hat, wie man aus clamd einen brauchbaren Backtrace herausbekommt, der ist herzlich eingeladen diese Idee  kundzutun ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2009/08/04/wazzup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Endlich fertig!</title>
		<link>http://blog.scherbaum.info/2009/06/22/endlich-fertig/</link>
		<comments>http://blog.scherbaum.info/2009/06/22/endlich-fertig/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:55:41 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Aktuelles]]></category>
		<category><![CDATA[Me, Myself and I]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[Ohne Worte]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=484</guid>
		<description><![CDATA[Ein gutes Jahr hat es gedauert, nun ist es fertig. Ohne weitere Worte ;)
Einmal von der Seite:

&#8230; und von vorne:

]]></description>
			<content:encoded><![CDATA[<p>Ein gutes Jahr hat es gedauert, nun ist es fertig. Ohne weitere Worte ;)</p>
<p>Einmal von der Seite:</p>
<p><a href="http://blog.scherbaum.info/wp-content/uploads/datgutepraxisbuchnagiosvonneseite.png"><img src="http://blog.scherbaum.info/wp-content/uploads/datgutepraxisbuchnagiosvonneseite-287x300.png" alt="Das gute Praxisbuch Nagios" title="Das gute Praxisbuch Nagios" width="287" height="300" class="alignnone size-medium wp-image-521" /></a></p>
<p>&#8230; und von vorne:</p>
<p><a href="http://blog.scherbaum.info/wp-content/uploads/datgutepraxisbuchnagiosundvonvorne.png"><img src="http://blog.scherbaum.info/wp-content/uploads/datgutepraxisbuchnagiosundvonvorne-264x300.png" alt="" title="Das gute Praxisbuch Nagios" width="264" height="300" class="alignnone size-medium wp-image-520" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2009/06/22/endlich-fertig/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Back, somehow.</title>
		<link>http://blog.scherbaum.info/2009/06/03/back-somehow/</link>
		<comments>http://blog.scherbaum.info/2009/06/03/back-somehow/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:18:23 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Aktuelles]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Nagios]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=464</guid>
		<description><![CDATA[In the past few months (basically for nearly a year *cough*) I was working on another book, now that this one is finally done and probably will hit bookstores this month I&#8217;m somehow back. At least I&#8217;ll have much more free time for all things Gentoo :)
Sadly this project had some (minor?) impact on being [...]]]></description>
			<content:encoded><![CDATA[<p>In the past few months (basically for nearly a year *cough*) I was working on another <a href="http://www.oreilly.de/catalog/pbnagiosger/">book</a>, now that this one is finally done and probably will hit bookstores this month I&#8217;m somehow back. At least I&#8217;ll have much more free time for all things Gentoo :)</p>
<p>Sadly this project had some (minor?) impact on being member of Gentoo&#8217;s council for nearly a year now. I wasn&#8217;t able to be as active as I would&#8217;ve liked to and couldn&#8217;t spent as much time as I would&#8217;ve liked to. On the other hand I only missed a single meeting (where ulm proxied for me) and (at least that&#8217;s my pov) I was always well enough prepared for council meetings. But still then, I&#8217;m not sure if I should run for the next council again. I&#8217;m thinking of lots of pros and cons for quite some while &#8211; but well, there are still some days left to decide whether to accept or decline the nomination.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2009/06/03/back-somehow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Icinga unter Gentoo</title>
		<link>http://blog.scherbaum.info/2009/05/15/icinga-unter-gentoo/</link>
		<comments>http://blog.scherbaum.info/2009/05/15/icinga-unter-gentoo/#comments</comments>
		<pubDate>Fri, 15 May 2009 13:02:18 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Aktuelles]]></category>
		<category><![CDATA[Nagios]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=443</guid>
		<description><![CDATA[
Heya,
just in case someone&#8217;s using Icinga on Gentoo, i added an ebuild to
install Icinga directly from git to my personal ebuild overlay.
To get started it&#8217;s recommended to use layman. Simply add the overlay
layman -a dertobi123
and unmask the icinga live-ebuild
echo &#8220;=net-analyzer/icinga-9999&#8243; >> /etc/portage/package.keywords&#8221;
and then `emerge icinga`. 
I just also sent in a patch to add an [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
Heya,</p>
<p>just in case someone&#8217;s using Icinga on Gentoo, i added an ebuild to<br />
install Icinga directly from git to my personal ebuild overlay.</p>
<p>To get started it&#8217;s recommended to use layman. Simply add the overlay</p>
<p>layman -a dertobi123</p>
<p>and unmask the icinga live-ebuild</p>
<p>echo &#8220;=net-analyzer/icinga-9999&#8243; >> /etc/portage/package.keywords&#8221;</p>
<p>and then `emerge icinga`. </p>
<p>I just also sent in a patch to add an idoutils target for make which<br />
makes it a tad easier to build idoutils (if not running make all).</p>
<p>wkr,<br />
Tobias
</p></blockquote>
<p>In kurz: Letzte Woche ist Nagios geforkt worden. Hinter dem Fork stehen renommierte Personen aus der deutschen Nagios-Community, die unter anderem für das Nagios Portal, NagVis oder PNP verantwortlich sind, sowie die Firma Netways, die wiederum einen wohl nicht kleinen Teil des Umsatzes mit auf Nagios basierten Monitoringlösungen erwirtschaftet.</p>
<p>Als wichtigster Grund für den Fork wird die stagnierende Entwicklung an Nagios sowie die Fokussierung der Entwicklung auf Nagios-Gründer Ethan Galstad angebracht. Dieser wiederum begründet die verlangsamte Entwicklung auch damit, dass ein Großteil seiner Zeit in die Klärung rechtlicher Belange investiert werden musste. Auszug aus seinem <a href="http://article.gmane.org/gmane.network.nagios.devel/6253">Post</a> an die nagios-devel Mailingliste (er spielt wohl (auch?) darauf an, dass Netways respektive deren Geschäftsführer die Marke &#8220;Nagios&#8221; in Deutschland registrieren ließ &#8211; derweil wurde Anfang 2009 auch die Marke &#8220;NAGIOS&#8221; durch Ethan Galstad eingetragen, näheres im <a href="http://register.dpma.de/DPMAregister/marke/schnellsuche">DPMAregister</a>)</p>
<blockquote><p>
&#8220;We&#8217;ve had to spend considerable resources protecting the Nagios<br />
project against commercial entities that would endanger its future.<br />
Netways is the biggest company that is violating the Nagios trademark,<br />
causing us many legal headaches, and using it in a manner which is<br />
confusing to people who are not &#8220;in the know&#8221;.&#8221;
</p></blockquote>
<p>Was letztlich wirklich hinter den Kulissen geschah, wird uns wohl für immer verschlossen bleiben. Umso schwerer ist es, den Fork zu bewerten &#8211; bisher bin ich mir lediglich sicher, dass sich das technisch bessere Projekt langfristig durchsetzen wird. &#8220;Jubelgesänge&#8221; wie im <a href="http://www.nagios-portal.org/wbb/index.php?page=Thread&#038;threadID=14429">Nagios-Portal</a> werden schnell versiegen, zumal diese zu erwarten waren: Dort hat Icinga den klaren Heimvorteil. Nur was ist dieser wert?</p>
<p>Titelverteidiger Nagios hingegen hat Flexiblität bewiesen und <a href=" http://community.nagios.org/2009/05/11/the-future-of-nagios-where-do-we-go-from-here/#more-215">zum Angriff geblasen</a>: Mit Ton Voon und Andreas Ericsson sollen zwei langjährige Mitstreiter die Entwicklung des Nagios-Kerns mit vorantreiben, <a href="http://ideas.nagios.org/">ideas.nagios.org</a> dient zum Erfassen und Bewerten von Ideen zur Weiterentwicklung von Nagios und aus dem von Netways betriebenen NagiosExchange.org wird möglicherweise nicht MonitoringExchange.org sondern exchange.nagios.org &#8211; wir werden sehen. </p>
<p>Um auf die Eingangs zitierte Mail zurück zu kommen, wer Icinga unter Gentoo testen und sich selbst eine &#8211; technische &#8211; Meinung bilden mag, der sei dazu eingeladen.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2009/05/15/icinga-unter-gentoo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nagios 3 is coming to your stable tree!</title>
		<link>http://blog.scherbaum.info/2009/01/24/nagios-3-is-coming-to-your-stable-tree/</link>
		<comments>http://blog.scherbaum.info/2009/01/24/nagios-3-is-coming-to-your-stable-tree/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 14:23:55 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=330</guid>
		<description><![CDATA[Some 9 months after the first version of Nagios 3 has hit Gentoo&#8217;s Portage Tree (3.0.1 it was) it&#8217;s time to get it marked as stable. This morning I filed the request for our architecture teams, they will hopefully soonish get the packages keyworded as stable for their architecture.
The most notable change from Nagios version [...]]]></description>
			<content:encoded><![CDATA[<p>Some 9 months after the first version of Nagios 3 has hit Gentoo&#8217;s Portage Tree (3.0.1 it was) it&#8217;s time to get it marked as stable. This morning I filed the request for our architecture teams, they will hopefully soonish get the packages keyworded as stable for their architecture.</p>
<p>The most notable change from Nagios version 2 to 3 (wrt Gentoo packaging) was to change installation paths. Up to version all Nagios related packages got installed in <em>/usr/nagios</em> &#8211; this has now been changed to a more FHS-compliant directory structure. For example it&#8217;s binaries are now installed at a location you&#8217;d expect them to be &#8211; <em>/usr/{bin,sbin}</em>, Nagios Plugins are now installed in <em>/usr/{lib,lib64}/nagios/plugins</em> and so on. If you&#8217;re looking for a list of general changes and improvements there&#8217;s for example the <a href="http://www.nagios.org/development/history/nagios-3x.php">Nagios 3.x Version History</a>.</p>
<p>The following package atoms will be marked as stable:</p>
<pre id="comment_text_0">=net-analyzer/nagios-3.0.6
=net-analyzer/nagios-check_logfiles-2.3.2.1-r1
=net-analyzer/nagios-core-3.0.6-r1
=net-analyzer/nagios-imagepack-1.0-r100
=net-analyzer/nagios-nrpe-2.12-r102
=net-analyzer/nagios-nsca-2.7.2-r100
=net-analyzer/nagios-plugins-1.4.13-r1
=net-analyzer/nagios-plugins-snmp-0.6.0-r1
=net-analyzer/nagios-sap-ccms-plugin-0.7.3-r1
=net-analyzer/pnp4nagios-0.4.12</pre>
<p>One thing still missing is <a href="http://www.gentoo.org/doc/en/nagios-guide.xml">Gentoo&#8217;s Nagios Guide</a> which Sven Vermeulen started to write some time ago and for which I offered some help &#8211; well, sorry &#8230; didn&#8217;t had time for this one yet :(</p>
<p>But if you&#8217;re looking for some documentation on getting started with Nagios 3 there&#8217;s a new book, <a href="http://www.packtpub.com/guide-for-learning-nagios-3/book">Learning Nagios 3.0</a>,  by <a title="Wojciech Kocjan" href="http://www.packtpub.com/author_view_profile/id/239">Wojciech Kocjan</a> published last October. Lucky me I got a copy of this book for a quick review :) Starting with an introduction to Nagios and description of changes in version 3 this book guides you with setting up your own Nagios monitoring box. From installation, an overview of the Nagios Web Interface and Nagios Plugins all important parts to get started with Nagios are covered &#8211; including passive checks via NSCA, remotely executed plugins via NRPE and distributed monitoring. Very useful is a dedicated chapter on SNMP which also describes receiving and integrating SNMP traps with Nagios.</p>
<p>For people already using Nagios chapter 11 is probably the most interesting one.  &#8220;Extending Nagios&#8221; has hints on getting started with monitoring a VMware Infrastructure using VMware&#8217;s Perl API and how to monitor a website effectively &#8211; it&#8217;s not only good to know that the website it&#8217;s reachable but for example also logging in to an onlineshop does work.</p>
<p>If you need a book to get started with Nagios &#8211; <a href="http://www.packtpub.com/guide-for-learning-nagios-3/book">Learning Nagios 3.0</a> (<a href="http://www.packtpub.com/article/guide-for-learning-nagios-3-table-of-contents">TOC</a>) is a good read.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2009/01/24/nagios-3-is-coming-to-your-stable-tree/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>nagstamon a Nagios Status Monitor</title>
		<link>http://blog.scherbaum.info/2008/11/24/nagstamon-a-nagios-status-monitor/</link>
		<comments>http://blog.scherbaum.info/2008/11/24/nagstamon-a-nagios-status-monitor/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 20:01:19 +0000</pubDate>
		<dc:creator>Tobias Scherbaum</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[Programmtipps]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://blog.scherbaum.info/?p=284</guid>
		<description><![CDATA[nagstamon is a Nagios Status Monitor and it&#8217;s development is inspired by the Nagios Checker plugin for Firefox (which I do like a lot &#8211; ask my colleagues :P) &#8230; anyways, nagstamon has one big advantage: it resides inside your system tray and therefore you don&#8217;t necessarily need to browse at websites all day long [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nagstamon.wiki.sourceforge.net/">nagstamon</a> is a Nagios Status Monitor and it&#8217;s development is inspired by the <a href="https://addons.mozilla.org/fr/firefox/addon/3607?lang=de">Nagios Checker</a> plugin for Firefox (which I do like a lot &#8211; ask my colleagues :P) &#8230; anyways, nagstamon has one big advantage: it resides inside your system tray and therefore you don&#8217;t necessarily need to browse at websites all day long to have your Nagios Status always in sight ;)</p>
<p><a href="http://blog.scherbaum.info/wp-content/uploads/soschautnagstamonaus.png"><img src="http://blog.scherbaum.info/wp-content/uploads/soschautnagstamonaus-300x204.png" alt="" title="Nagstamon" width="300" height="204" class="alignnone size-medium wp-image-536" /></a></p>
<p>I discovered nagstamon already some months ago while checking the <a href="http://www.nagiosexchange.org">Nagios Exchange</a> feed and quickly wrote an ebuild &#8211; but then simply put forgot about nagstamon. Today I&#8217;ve seen bug #248121, being a request for nagstamon to be added to our Portage tree. There you are! ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scherbaum.info/2008/11/24/nagstamon-a-nagios-status-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
