<?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>An It-Slave in the digital saltmine &#187; op5</title>
	<atom:link href="http://www.it-slav.net/blogs/category/op5/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.it-slav.net/blogs</link>
	<description>Another Blog from a Geek that has no life</description>
	<lastBuildDate>Tue, 10 Jan 2012 20:27:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>KVM virtualization, some best practice, part 2</title>
		<link>http://www.it-slav.net/blogs/2012/01/08/kvm-virtualization-some-best-practice-part-2/</link>
		<comments>http://www.it-slav.net/blogs/2012/01/08/kvm-virtualization-some-best-practice-part-2/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 11:30:19 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2201</guid>
		<description><![CDATA[Background It really annoyed me that the iowait at the cpu on the Dom 0 system was approximatly 50% when the 4 virtual system was doing more or less nothing. I showed my earlier blogpost about VM virtualization to our sysadmin at op5. He gave me a couple of more hints that really make a [...]]]></description>
			<content:encoded><![CDATA[<h2>Background</h2>
<p>It really annoyed me that the iowait at the cpu on the Dom 0 system was approximatly 50% when the 4 virtual system was doing more or less nothing.</p>
<p>I showed my<a href="http://www.it-slav.net/blogs/2012/01/01/kvm-virtualization-some-best-practice/" target="_blank"> earlier blogpost</a> about VM virtualization to our sysadmin at op5. He gave me a couple of more hints that really make a big difference, the best part is that they are real simple to implement.</p>
<p>I also noticed that I forgot some parts in the previous article that was obvius to me.</p>
<p><span id="more-2201"></span></p>
<h3>&nbsp;</h3>
<h3>#1 use virtio drivers if possible</h3>
<p>This is probably the single most important step to get the most out of the hardware.</p>
<p>When the virtual systems wants to communicate with the hardware it uses drivers, if the drivers are simulating hardware to give a service to the virtual operating system it adds alot of overhed. A simple example:</p>
<ul>
<li>The virtual system wants to access the disk</li>
<li>The virtual system communicates via the driver to the hardware</li>
<li>The hardware is not real hardware, it is emulated hardware in sofware&nbsp;</li>
<li>The software that emulates the hardware sends the I/O to the Dom 0 virtualization engine</li>
<li>The Virtualization engine verifies that the access is ok, translate it to real hardware call via its driver</li>
<li>The hardware do the operation and send the result back up via all the steps to the virtual operating system</li>
</ul>
<p>All this transalations and software calls take alot of resources from the machine.</p>
<p>By using virtual drivers, so that there is no need to emulate hardware, many of the steps can be skipped or done with much less penalty. However not all operating system have virtio drivers.</p>
<h3>&nbsp;</h3>
<h3>#2 load the virtio modules in Dom 0</h3>
<p>This is a real god hint I got from our sysadmin, load the virtual drivers in the Dom 0 system asweell. According to him, the virtual drivers in the Dom 0 and Dom U:s communicate and makes the I/O much more effective. I have not found any information about this at any place so I was sceptical but I tried it.</p>
<pre># modprobe virtio_balloon
# modprobe virtio_blk
# modprobe virtio_net
# modprobe virtio_pci</pre>
<p>The virtual systems need to be rebooted as far as I know before the loaded drivers will have any effect.</p>
<p>At first no change at all, but after few hours I noticed that CPU idle raized and the iowait went from at least 50% down to below 5%.</p>
<p>A nice graph, created by <a href="http://www.op5.com/network-monitoring/op5-monitor/" target="_blank">op5 Monitor</a> showing the difference:</p>
<p><img alt="" height="505" src="http://www.it-slav.net/blogs/wp-content/uploads/Screen Shot 2012-01-05 at 10_24_45 AM.png" width="604" /></p>
<p>I loaded the virtual drivers approximately 4 pm, and it took until 10 pm before the performance boost showed up.</p>
<p>The correct way of making sure that the drivers are loaded directly would be to remake the kernel but I&#39;m lazy so I have just added the module load to /etc/rc.local</p>
<h2>&nbsp;</h2>
<h2>Conclusions</h2>
<p>It is always important to monitor systems. When doing changes it is not possible know if the changes do have any impact if you do not monitor and follow up how and if the changes does anything.</p>
<p>My former statement that KVM is not mature is more true then I have thought. The knowledge how to tune and maintain KVM systems seems to be like black art where the knowledge is not documented and well spread. I have read the RedHat virtualization and I have not found anything about that the virtual drivers should be loaded on the Dom0 system.</p>
<p>If there is anyone out there that has some documentation or more hints, please send me the link or comment this blogpost.</p>
<p>Links:</p>
<ul>
<li><a href="http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Virtualization_Host_Configuration_and_Guest_Installation_Guide/index.html" target="_blank">RedHa</a>t virtualization doc</li>
<li><a href="http://www.op5.com/network-monitoring/op5-monitor/" target="_blank">op5 Monitor</a> that monitor and creates nice graphs</li>
<li><a href="http://exchange.nagios.org/directory/Plugins/System-Metrics/CPU-Usage-and-Load/check_cpu_stats-2Esh/details" style="color: rgb(200, 0, 0); font-family: arial, verdana, sans-serif; text-align: justify; " target="_blank">check_cpu_stats</a>&nbsp;Nagios plugin to monitor cpustat</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2012%2F01%2F08%2Fkvm-virtualization-some-best-practice-part-2%2F&amp;title=KVM%20virtualization%2C%20some%20best%20practice%2C%20part%202" id="wpa2a_2"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2012/01/08/kvm-virtualization-some-best-practice-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KVM virtualization, some best practice, part 1</title>
		<link>http://www.it-slav.net/blogs/2012/01/01/kvm-virtualization-some-best-practice/</link>
		<comments>http://www.it-slav.net/blogs/2012/01/01/kvm-virtualization-some-best-practice/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 20:02:05 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2181</guid>
		<description><![CDATA[Background As an it slave, I have the same problems as most datacenters: Running out of space because of more and more machines get into the datacenter Overheating Powerconsumption Added to the &#34;normal&#34; datacenter problems, I also have to deal with: Wife acceptance Noice, my neighbours has complained about the noice outside my basement. To [...]]]></description>
			<content:encoded><![CDATA[<h2>Background</h2>
<p>As an it slave, I have the same problems as most datacenters:</p>
<ul>
<li>Running out of space because of more and more machines get into the datacenter</li>
<li>Overheating</li>
<li>Powerconsumption</li>
</ul>
<p>Added to the &quot;normal&quot; datacenter problems, I also have to deal with:</p>
<ul>
<li>Wife acceptance</li>
<li>Noice, my neighbours has complained about the noice outside my basement.</li>
</ul>
<p>To address this issues I will run a consolidation project to get fewer machines by using virtualization. As virtualization engine, KVM is choosed.</p>
<p>This article will describe some pitfalls I run into and how I solved them.</p>
<p><span id="more-2181"></span></p>
<h2>&nbsp;</h2>
<h2>&nbsp;</h2>
<h2>KVM plattform</h2>
<p>KVM seems to be the future for virtualization within the Linux area since Xen has done some mistakes.</p>
<p>As I have good experience of running CentOS and has KVM included I decided to use CentOS as the plattform for my virtualization.</p>
<p>&nbsp;</p>
<h2>Issues</h2>
<h3>Bridge network</h3>
<p>To let the virtual boxes has full access to the network you need create a network bridge, it is rather straightforward and well documented so I will skip this part. I used the documentation on Red Hat customer support. Why KVM requires a bridge instead of a normal NIC is another question <img src='http://www.it-slav.net/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>&nbsp;</h3>
<h3>Snapshots</h3>
<p>One handy feature with virtualization is that the virtual systems can be one big fat file at the physical host, this gives the possibility to make full backups without turning the system down a.k.a snapshots.</p>
<p>However to get snapshot to work the filetype must be qcow2 and raw is the default format.</p>
<p>It is possible to convert from raw to qcow2 format by running the command:</p>
<pre>qemu-img convert -f raw -O qcow2 &lt;virtualhost&gt;.img &lt;virtualhost&gt;.img.qcow2</pre>
<p>Remember to turn of your virtual system by running:</p>
<pre>virsh shutdown &lt;virtualhost&gt;
</pre>
<p>After the conversion:</p>
<pre>virsh edit &lt;virtualhost&gt;
</pre>
<p>modify the type and path, i.e.</p>
<pre>      &lt;driver name=&#39;qemu&#39; type=&#39;qcow2&#39; cache=&#39;none&#39;/&gt;
      &lt;source file=&#39;/var/lib/libvirt/images/web.img.qcow2&#39;/&gt;
</pre>
<p>Start your virtual system:</p>
<pre>virsh start &lt;virtualhost&gt;</pre>
<p>&nbsp;</p>
<p>Take a snapshot with:</p>
<pre>qemu-img snapshot -c &lt;snapshotname&gt; &lt;virtualhost&gt;.img.preallc.qcow2</pre>
<p>&nbsp;</p>
<p>To create a full image of your snapshot you need to compile a more resent version of qemu-img then shipped with CentOS 6.2, I download a later version and compiled it from <a href="http://git.qemu.org/qemu.git/commit/?id=51ef67270b1d10e1fcf3de7368dccad1ba0bf9d1" target="_blank">here</a>, i renamed the new to qemu.img2 and copied it to /usr/local/bin</p>
<pre>qemu-img2 convert -p -f qcow2 -O qcow2 -s &lt;snapshotname&gt; &lt;virtualhost&gt;.img.preallc.qcow2 &lt;targetpath&gt;
</pre>
<p>Beware: This command can use all your resources and may affect all your virtual systems, use nice and ionice to prevent it.</p>
<h3>&nbsp;</h3>
<h3>Disk I/O</h3>
<p>After installing just a few virtual system I noticed that my physical host got alot of I/O wait, it can be seen by using tools like top.</p>
<p>To monitor this I installed the nagios plugins:</p>
<ul>
<li>check disk io, can be found <a href="https://trac.id.ethz.ch/projects/nagios_plugins/wiki/check_diskio" target="_blank">here</a></li>
<li>check cpu stats, can be found <a href="http://exchange.nagios.org/directory/Plugins/System-Metrics/CPU-Usage-and-Load/check_cpu_stats-2Esh/details" target="_blank">here</a></li>
<li>check_libvirt, developed by <a href="http://www.op5.com" target="_blank">op5</a> and an <a href="http://www.op5.com/how-to/how-to-monitor-kvm-installation/" target="_blank">Howto </a></li>
</ul>
<p>However it seems like that though my virtual systems did more or less nothing they caused alot of disk I/O on the physical system.</p>
<p>I did some investigations and read quite many articles, fiddled and tested. The following is what worked for me in my setup.</p>
<h4>#1 Change disk scheduler</h4>
<p>The disk scheduler can be changed on runtime by modify the file:</p>
<pre>/sys/block/sda/queue/scheduler</pre>
<p>to see what scheduler you use now:</p>
<pre>cat /sys/block/sda/queue/scheduler</pre>
<p>Change sda to the device you have.</p>
<p>The scheduler that worked best for me is deadline</p>
<pre>echo deadline &gt; /sys/block/sda/queue/scheduler</pre>
<p>&nbsp;</p>
<h4>#2 Mount with noatime</h4>
<p>A feature in Unix and other Unixlike systems like Linux is that it normaly stores when a file is accessed. So one read always produce a write and if you are using raid like morroring this get worse, one reade always generate several writes. This creates alot of overhead for a feature soldom used.</p>
<p>So change /etc/fstab so it will mount the file systems with noatime.<br />
	An axample:</p>
<pre>UUID=a290aa4b-635c-45fa-b144-1fbef90b3735 /                       ext4    defaults,noatime        1 1</pre>
<p>&nbsp;</p>
<h4>#3 Preallocation disk images</h4>
<p>A real boost that is hidden in the featureset and not shown in the virtualmachine gui is using preallocation disk images. They cannot be created from the GUI so I install the virtual machine, turn it of and convert it afterwards.</p>
<pre>qemu-img convert -f qcow2 -O qcow2 -o preallocation=metadata &lt;virtualhost&gt;.img.qcow2 &lt;virtualhost&gt;.img.preallc.qcow2</pre>
<p>Change the path to new image name by editing the virtual machine settings</p>
<pre>virsh edit &lt;virtualhost&gt;</pre>
<p>&nbsp;</p>
<h2>Conclusions</h2>
<p>In my opinion it seems like KVM is still a little bit immature or at least the tools to handle it. Maybe it would be a good idea to have one linux distro focusing on beeing the best platform for virtualization.</p>
<p>I am convinced that I can get even more bang for the bucks out of my installation if I learn how to tweak it even more, so if you have any hints, do not hesitate to contact me. Preferably as a comment to this blogpost.</p>
<p>&nbsp;</p>
<h2>Referenses:</h2>
<ul>
<li><a href="http://www.op5.com/network-monitoring/op5-monitor/" target="_blank">op5 Monitor</a>, a nagios based enterprise monitor tool to monitor my environment</li>
<li><a href="http://www.op5.com/how-to/how-to-monitor-kvm-installation/" target="_blank">check_libvirt</a>, a nagios plugin done by op5 to monitor KVM</li>
<li><a href="https://trac.id.ethz.ch/projects/nagios_plugins/wiki/check_diskio" target="_blank">check_diskio</a>, a nagios plugin to monitor disk I/O</li>
<li><a href="http://exchange.nagios.org/directory/Plugins/System-Metrics/CPU-Usage-and-Load/check_cpu_stats-2Esh/details" target="_blank">check_cpu_stats</a>, a nagios plugin to monitor cpu usage rather detailed</li>
<li>Another <a href="http://itscblog.tamu.edu/improve-disk-io-performance-in-kvm/" target="_blank">blogpost</a> which helped me</li>
<li><a href="http://www.google.se/url?sa=t&amp;rct=j&amp;q=redhat%206%20kvm%20howto&amp;source=web&amp;cd=6&amp;ved=0CE0QFjAF&amp;url=http%3A%2F%2Fwww.redhat.com%2Fsummit%2F2011%2Fpresentations%2Fsummit%2Fdecoding_the_code%2Fwednesday%2Fwagner_w_420_kvm_performance_improvements_and_optimizations.pdf&amp;ei=qzT-TtvGBsyB4AS8xNmkDg&amp;usg=AFQjCNEK6OMSA4WtSs7NYj6n-jsmauwcnw&amp;cad=rja" target="_blank">KVM performance improvements and optimizations</a> &#8211; Red Hat presentation</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2012%2F01%2F01%2Fkvm-virtualization-some-best-practice%2F&amp;title=KVM%20virtualization%2C%20some%20best%20practice%2C%20part%201" id="wpa2a_4"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2012/01/01/kvm-virtualization-some-best-practice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>op5 Monitor 5.5 is here</title>
		<link>http://www.it-slav.net/blogs/2011/12/06/op5-monitor-5-5-is-here/</link>
		<comments>http://www.it-slav.net/blogs/2011/12/06/op5-monitor-5-5-is-here/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 20:13:06 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2167</guid>
		<description><![CDATA[&#160;News &#8211; Monitor v5.5 Monitor 5.5 -&#160; It&#8217;s always extra fun when we do releases. News in short are: Support for offline maps &#8211; no need to have online gmap connection Introducing IP traffic &#8220;weathermaps&#8221; i.e. a user friendly way to present traffic flows, being WAN or LAN traffic Display monitor data on external web [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;<span class="fu_headline" style="font-family: Arial, Helvetica, sans-serif; font-size: 24px; text-decoration: none; ">News &#8211; Monitor v5.5  </span> <br />
<img height="10" alt="" src="http://app.follow-up.net/resources/385/My_Images/designhelp/_space.gif" /><br />
<span class="fu_text" style="color: rgb(51, 51, 51); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none; ">  Monitor 5.5 -&nbsp; It&rsquo;s always extra fun when we do releases. News in short are: </span></p>
<ul>
<li>Support for offline maps &#8211; no need to have online gmap connection</li>
<li>Introducing IP traffic &ldquo;weathermaps&rdquo; i.e. a user friendly way to present traffic flows, being WAN or LAN traffic</li>
<li>Display monitor data on external web i.e visualise and distribute the information to greater crowd</li>
<li>Multiple of &nbsp;time saving tasks such as multidelete, free text filter, save searches etc.</li>
</ul>
<p><span id="more-2167"></span></p>
<p>&nbsp;</p>
<p><span class="fu_text" style="color: rgb(51, 51, 51); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none; "> Having a modern easy to use proactive monitoring system is the core of  assuring quality delivery of your enterprise applications to your user.  However cool report and dashboards are great, if they require complex  skills, many hours to set up and maintain -&nbsp; the value is quickly gone.</p>
<p>With op5 Monitor v5.5 we introduce a number of features to make the  information more presentable and understandable. We have made lots of  new micro features to make the everyday change management easier and  faster.</p>
<p>Major features in this release:&nbsp;&nbsp;&nbsp;<br />
&bull;&nbsp;&nbsp; &nbsp;Support for offline map<br />
&nbsp;&nbsp; &nbsp;⁃&nbsp;&nbsp; &nbsp;Now integrating the open streetmap (OSM) project, making the vizualisation of large networks easier and offline<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Support for IP traffic flow visualisation on maps or any background<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Publish op5 Monitor data / widget on external web service<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Multi tier host &amp; service groups<br />
&nbsp;&nbsp; &nbsp;⁃&nbsp;&nbsp; &nbsp;A host or service group can now be part of another group creating a tree structure of dependencies.<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Multidelete &ndash; it&#8217;s always easy to add a new host or service to a  system &ndash; now it&acute;s easy to remove as well &#8211; saves lots of time!<br />
Usability improvements:<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Saved searches<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Search on notes and comments and search in scheduling queue<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Free text filter<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Enhanced Alert history<br />
&nbsp;&nbsp; &nbsp;&bull;&nbsp;&nbsp; &nbsp;Authentication fallback</p>
<p>In total we have fixed and added more then 240 items in this release.  Please let us know what you think &ndash; we focus on Your needs, just tell  us!</p>
<p>Best regards<br />
The op5 Team!  </span></p>
<p>&nbsp;</p>
<p><a style="color: rgb(175, 34, 13); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none; " target="_blank" href="http://www.op5.com/release-notes/op5-monitor-5-5-0-release-notes/">More about the new release</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2011%2F12%2F06%2Fop5-monitor-5-5-is-here%2F&amp;title=op5%20Monitor%205.5%20is%20here" id="wpa2a_6"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2011/12/06/op5-monitor-5-5-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New How-To articles at op5</title>
		<link>http://www.it-slav.net/blogs/2011/09/29/new-how-to-articles-at-op5/</link>
		<comments>http://www.it-slav.net/blogs/2011/09/29/new-how-to-articles-at-op5/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 16:48:26 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2148</guid>
		<description><![CDATA[The tech team at op5 have published a number of new How-To articles on the op5 Support web. Here is a list of the most recent How-Tos: &#160; Access op5 Monitor from your iPhone http://www.op5.com/how-to/access-op5-monitor-iphone/ &#160; Access op5 Monitor on Android Smartphone http://www.op5.com/how-to/access-op5-monitor-android-smartphone/ &#160; How-to monitor a KVM installation http://www.op5.com/how-to/how-to-monitor-kvm-installation/ &#160; Secure communication with Cloud [...]]]></description>
			<content:encoded><![CDATA[<div>The tech team at op5 have published a number of new How-To articles on the op5 Support</div>
<div>web. Here is a list of the most recent How-Tos:</div>
<div>&nbsp;</div>
<div>Access op5 Monitor from your iPhone</div>
<div><a href="http://www.op5.com/how-to/access-op5-monitor-iphone/">http://www.op5.com/how-to/access-op5-monitor-iphone/</a></div>
<div>&nbsp;</div>
<div>Access op5 Monitor on Android Smartphone</div>
<div><a href="http://www.op5.com/how-to/access-op5-monitor-android-smartphone/">http://www.op5.com/how-to/access-op5-monitor-android-smartphone/</a></div>
<div>&nbsp;</div>
<div>How-to monitor a KVM installation</div>
<div><a href="http://www.op5.com/how-to/how-to-monitor-kvm-installation/">http://www.op5.com/how-to/how-to-monitor-kvm-installation/</a></div>
<div>&nbsp;</div>
<div>Secure communication with Cloud poller</div>
<div><a href="http://www.op5.com/how-to/secure-communication-cloud-poller/">http://www.op5.com/how-to/secure-communication-cloud-poller/</a></div>
<div>&nbsp;</div>
<div>Agentless Monitoring of Windows using WMI</div>
<div><a href="http://www.op5.com/how-to/agentless-monitoring-windows-wmi/">http://www.op5.com/how-to/agentless-monitoring-windows-wmi/</a></div>
<div>&nbsp;</div>
<div>How to monitor your application server with op5 Monitor and JMX4Perl</div>
<div><a href="http://www.op5.com/how-to/howto-monitor-application-server-op5-monitor-jmx4perl/">http://www.op5.com/how-to/howto-monitor-application-server-op5-monitor-jmx4perl/</a></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>Please let me know if you have any suggestion for future How-To articles.</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2011%2F09%2F29%2Fnew-how-to-articles-at-op5%2F&amp;title=New%20How-To%20articles%20at%20op5" id="wpa2a_8"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2011/09/29/new-how-to-articles-at-op5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor FreeNAS with op5 Monitor or Nagios</title>
		<link>http://www.it-slav.net/blogs/2011/08/25/monitor-freenas-with-op5-monitor-or-nagios/</link>
		<comments>http://www.it-slav.net/blogs/2011/08/25/monitor-freenas-with-op5-monitor-or-nagios/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 12:31:58 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[freenas]]></category>
		<category><![CDATA[monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2090</guid>
		<description><![CDATA[Background My old NAS built on top of CentOS has some performence issues and the disks are quit old now. The hardware is leftovers that is approx 8 years old and not highend at that time either. The disks age has worried my for a time and I would like to have higher redunduncy with [...]]]></description>
			<content:encoded><![CDATA[<h2>Background</h2>
<p>My old NAS built on top of CentOS has some performence issues and the disks are quit old now. The hardware is leftovers that is approx 8 years old and not highend at that time either. The disks age has worried my for a time and I would like to have higher redunduncy with raid1/mirrored disks.</p>
<p>After some research I decided to run my new NAS on FreeNAS, which has all the features I use, like: CIFS, NFS, FTP, SSH, Rsync, Unison, iSCSI and also easy administration and disk management.</p>
<p>This article will describe how I&nbsp;did setup Nagios or op5 Monitoring on my FreeNAS system. I&nbsp;assume basic knowledge of Nagios or op5 Monitor.</p>
<p>&nbsp;<span id="more-2090"></span></p>
<h2>Installing nrpe</h2>
<p>Nrpe is the agent that nagios and op5 Monitor uses to monitor a system from the inside.</p>
<p>From the webgui add group nagios and user nagios. User nagios should be a meber of group nagios.</p>
<p><code>&nbsp;freenas:~# pkg_add -r nrpe2<br />
Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.3-release/Latest/nrpe2.tbz... Done.<br />
Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.3-release/All/perl-5.10.1.tbz... Done.<br />
Removing stale symlinks from /usr/bin...<br />
&nbsp;&nbsp;&nbsp; Skipping /usr/bin/perl<br />
&nbsp;&nbsp;&nbsp; Skipping /usr/bin/perl5<br />
Done.<br />
Creating various symlinks in /usr/bin...<br />
&nbsp;&nbsp;&nbsp; Symlinking /usr/local/bin/perl5.10.1 to /usr/bin/perl<br />
&nbsp;&nbsp;&nbsp; Symlinking /usr/local/bin/perl5.10.1 to /usr/bin/perl5<br />
Done.<br />
cd: can't cd to /usr/include<br />
Cleaning up /etc/make.conf... Done.<br />
Spamming /etc/make.conf... Done.<br />
Cleaning up /etc/manpath.config... Done.<br />
Spamming /etc/manpath.config... Done.<br />
Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.3-release/All/libiconv-1.13.1_1.tbz... Done.<br />
Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.3-release/All/gettext-0.17_1.tbz... Done.<br />
Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.3-release/All/nagios-plugins-1.4.14,1.tbz... Done.<br />
You already have a &quot;nagios&quot; group, so I will use it.<br />
You already have a &quot;nagios&quot; user, so I will use it.</p>
<p>**********************************************************************</p>
<p>&nbsp;Enable NRPE in /etc/rc.conf with the following line:</p>
<p>&nbsp;&nbsp; nrpe2_enable=&quot;YES&quot;</p>
<p>&nbsp;A sample configuration is available in /usr/local/etc/nrpe.cfg-sample.<br />
&nbsp;Copy to nrpe.cfg where required and edit to suit your needs.</p>
<p>**********************************************************************</code><br />
&nbsp;</p>
<p><code>freenas:~# cp /usr/local/etc/nrpe.cfg-sample /etc/nrpe.cfg</code></p>
<p>I changed the allowed_hosts line and added my op5 Monitor host.</p>
<div>&nbsp;</div>
<div>Unfortunatly the instructions to autostart nrpe do not work, my guess is that FreeNAS is not 100% FreeBSD compatible.</div>
<div>I modified /etc/rc and addded in the end of the file:</div>
<div>
<div>&nbsp;</div>
<div><code>#Added by peter@it-slav.net 20101114</code></div>
<div><code>echo 'nrpe'</code></div>
<div><code>/usr/local/sbin/nrpe2 -c /etc/nrpe.cfg -d</code></div>
<div><code>#End peter@it-slav.net</code></div>
<div><code>&nbsp;</code></div>
<div><code># Let the PHP functions know we've finished booting</code></div>
<div><code>BOOTING=0</code></div>
</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>Reboot the FreeNAS system.</div>
<div>&nbsp;</div>
<div>From the op5 Monitor/Nagios host run:</div>
<div><code># ./check_nrpe -H fnas -c check_load<br />
OK - load average: 0.72, 0.85, 0.81|load1=0.721;15.000;30.000;0; load5=0.847;10.000;25.000;0; load15=0.808;5.000;20.000;0;&nbsp;</code><br />
&nbsp;</div>
<p>So the nagios agent works.</p>
<p>&nbsp;</p>
<h2>&nbsp;</h2>
<h2>&nbsp;</h2>
<h2>Links</h2>
<ul>
<li><a href="http://www.op5.com">op5</a>, an Enterprise Monitor product company</li>
<li><a target="_blank" href="http://www.op5.com/network-monitoring/op5-monitor/">op5 Monitor</a>, Enterprise Monitoring based on opensource</li>
<li><a target="_blank" href="http://www.nagios.org">Nagios</a>, an excellent opensource monitor tool</li>
<li><a href="http://www.freenas.org/">FreeNAS</a>, very capable NAS based on FreeBSD</li>
</ul>
<div>&nbsp;</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2011%2F08%2F25%2Fmonitor-freenas-with-op5-monitor-or-nagios%2F&amp;title=Monitor%20FreeNAS%20with%20op5%20Monitor%20or%20Nagios" id="wpa2a_10"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2011/08/25/monitor-freenas-with-op5-monitor-or-nagios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud monitoring with op5 Monitor or Nagios</title>
		<link>http://www.it-slav.net/blogs/2011/07/07/cloud-monitoring-with-op5-monitor-or-nagios/</link>
		<comments>http://www.it-slav.net/blogs/2011/07/07/cloud-monitoring-with-op5-monitor-or-nagios/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 18:44:57 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2076</guid>
		<description><![CDATA[Monitor the cloud with nagios or op5 monitor. ]]></description>
			<content:encoded><![CDATA[<p>Finally, the most important and useful widget to Ninja has arrived. As everybody in the IT industri today knows, the cloud is where we all want to go and nirvana will be accomplished. To get there it is a god idea to let your favorite monitor solution keep track of when you can read more about this holy graal.</p>
<p>The widget keeps track of how many times the word &quot;moln&quot; appear on idg.se webpage and displays it in a easy view in The Tactical Overview.</p>
<p>&nbsp;</p>
<p>Screenshoots from the different modes:</p>
<p><a href="http://www.it-slav.net/blogs/wp-content/uploads/2011/07/idg_cloud_report.jpg"><img alt="" title="idg_cloud_report" width="400" height="425" class="aligncenter size-full wp-image-2077" src="http://www.it-slav.net/blogs/wp-content/uploads/2011/07/idg_cloud_report.jpg" /></a></p>
<p>&nbsp;</p>
<p>Links:</p>
<ul>
<li><a href="https://demo.op5.com/monitor/index.php/tac">op5 Sandbox with a live cloud widget online</a>, registration is necessary</li>
<li><a href="http://www.op5.org/community/plugin-inventory/op5-projects/ninja">Ninja, the new and inovative nagios gui</a></li>
<li><a href="http://www.op5.org/community/plugin-inventory/widgets">Widget</a> exchange area</li>
</ul>
<p>Kudos to op5 support that has created this excellent widget&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2011/07/07/cloud-monitoring-with-op5-monitor-or-nagios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>op5 Monitor or Nagios dashboard using Merlin backend</title>
		<link>http://www.it-slav.net/blogs/2011/03/09/nagios-dashboard-using-merlin-backend/</link>
		<comments>http://www.it-slav.net/blogs/2011/03/09/nagios-dashboard-using-merlin-backend/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 10:42:32 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[merlin]]></category>
		<category><![CDATA[nagios dashboard]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=2010</guid>
		<description><![CDATA[Presenting collected Nagios data has been cumbersome. But now with op5 added funtionality, storing the data in a database makes it much easier. Morten Bekkelund has created a nice dashboard typically used in NOCs. The dashboard has been modified and improved by the community and an example can be seen at op5 sandbox dashboard and [...]]]></description>
			<content:encoded><![CDATA[<p>Presenting collected Nagios data has been cumbersome. But now with op5 added funtionality, storing the data in a database makes it much easier. Morten Bekkelund has created a nice dashboard typically used in NOCs.</p>
<p>The dashboard has been modified and improved by the community and an example can be seen at <a href="https://sandbox.op5.com/dashboard/" target="_blank">op5 sandbox dashboard</a> and can be downloaded from <a href="http://www.op5.org/community/plugin-inventory/dashboards/dashboard" target="_blank">op5 community</a>.</p>
<p>The original project place is <a href="http://dingleberry.me/2010/04/our-new-dashboard/" target="_blank">http://dingleberry.me/2010/04/our-new-dashboard/</a></p>
<p>&nbsp;<a href="http://www.it-slav.net/blogs/wp-content/uploads/2011/03/dashboard-1.0.png"><img src="http://www.it-slav.net/blogs/wp-content/uploads/2011/03/dashboard-1.0-1024x508.png" alt="" title="dashboard-1.0" class="aligncenter size-large wp-image-2016" style="width: 602px; height: 301px;" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2011%2F03%2F09%2Fnagios-dashboard-using-merlin-backend%2F&amp;title=op5%20Monitor%20or%20Nagios%20dashboard%20using%20Merlin%20backend" id="wpa2a_12"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2011/03/09/nagios-dashboard-using-merlin-backend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Nagios problems solved, by op5</title>
		<link>http://www.it-slav.net/blogs/2010/09/22/top-10-nagios-problems-solved-by-op5/</link>
		<comments>http://www.it-slav.net/blogs/2010/09/22/top-10-nagios-problems-solved-by-op5/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 18:09:14 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1943</guid>
		<description><![CDATA[Background When I&#160;was preparing a presentation about what op5 is doing and our contribution to the community, I went to ideas.nagios.org. When I browsed the list of the biggest issues with Nagios I&#160;found out that op5 has packaged and solved them all in op5 Monitor. I encourage everyone to take a peak at the list [...]]]></description>
			<content:encoded><![CDATA[<h3>Background</h3>
<p>When I&nbsp;was preparing a presentation about what <a target="_blank" href="http://www.op5.com">op5</a> is doing and our contribution to the community, I went to <a target="_blank" href="http://ideas.nagios.org">ideas.nagios.org</a>. When I browsed the list of the biggest issues with <a target="_blank" href="http://www.nagios.org">Nagios</a> I&nbsp;found out that <a href="http://www.op5.com" target="_blank">op5</a> has packaged and solved them all in op5 Monitor. I encourage everyone to take a peak at the list and judge for them self what platform you want to use for your enterprise monitoring solution.</p>
<p>&nbsp;<span id="more-1943"></span></p>
<p><strong>1. Nagios Clusters</strong></p>
<p>op5 has developed Merlin (Module for Effortless and Redundant and Loadbalanced Infrastructure with Nagios). It provides the possibility to have a redundant or/and loadbalanced solution using Nagios. It also provides a scalable database backend for Ninja and Nagvis, take a peak at <a target="_blank" href="http://www.op5.org/community/plugin-inventory/op5-projects/merlin">Merlin</a> webpage.</p>
<p>&nbsp;</p>
<p><strong>2. Performance Graphing</strong></p>
<p>In op5 Monitor op5 has added <a target="_blank" href="http://docs.pnp4nagios.org/">pnp4nagios</a> that graphs more or less any check that gives a numerical value back.</p>
<p>&nbsp;</p>
<p><strong>3. New Status Map</strong></p>
<p>We provide a new statusmap, it is a part of Nagvis project and called Automap. op5 has contributed to <a target="_blank" href="http://www.nagvis.org/">Nagvis</a> by adding support for Merlin database backend and GoogleMaps integration</p>
<p>&nbsp;</p>
<p>
<strong> 4. Better Interface</strong></p>
<p>op5 has created a new PHP based interface that makes you proud of your monitor solution, called Ninja. Ninja stands for Nagios is now Just Awesome, it looks so good so you can show it to your manager:-) Take a peak at <a href="http://www.op5.org/community/plugin-inventory/op5-projects/ninja" target="_blank">Ninja webpage</a>.</p>
<p>We had a naming competition at op5 my suggestion to call it Yang, Yet Another Nagios Gui, did not get so many votes so the name become Ninja.</p>
<p>&nbsp;</p>
<p>
<strong> 5. Configuration</strong></p>
<p>Any one that has tried to configure Nagios by hand has thought bad thoughts. It is cumbersome and in the begining it makes even a skilled Unix admin frustrated. op5 has developed a web based configuration tool named Nacoma. It is included in op5 Monitor.</p>
<p>&nbsp;</p>
<p>
<strong> 6. SLA reports</strong></p>
<p>op5 has got alot of feedback from the customers and one issue was better reports, we have created two reports: availability and SLA report. Both of them can be scheduled and looks god compared to the reports in Nagios, they are included in <a href="http://www.op5.org/community/plugin-inventory/op5-projects/ninja" target="_blank">Ninja</a></p>
<p>&nbsp;<strong><br />
7. More members in core team</strong></p>
<p>Well, this is something that op5 cannot controll, however, Andreas Ericsson one of op5s core developers are a member og Nagios steering board.</p>
<p>&nbsp;</p>
<p>
<strong> 8. SNMP Trap receiver</strong></p>
<p>This is something op5 is working on right now, we have today created a prototype together with a customer and depending of the outcome of that project we will know better when it will be available to the market.</p>
<p>&nbsp;</p>
<p>
<strong> 9. UI-Improvment</strong></p>
<p>op5s solution to this issue is Ninja, a better, nicer, scalable, database backend gui to Nagios.</p>
<p>&nbsp;</p>
<p>
<strong> 10. Nagios Dashboard</strong></p>
<p>A newTactical Overview with widgets or Nagvis, all included in Ninja</p>
<p>&nbsp;</p>
<h3>Links</h3>
<ul>
<li>ideas.nagios.org<a href="http://ideas.nagios.org" target="_blank"> http://ideas.nagios.org</a></li>
<li>Nagios <a href="http://www.nagios.org" target="_blank">http://www.nagios.org</a></li>
<li>op5 <a href="http://www.op5.com" target="_blank">http://www.op5.com</a></li>
<li>op5 Monitor<a href="http://www.op5.com/op5/products/network-monitor" target="_blank"> http://www.op5.com/op5/products/network-monitor</a></li>
<li>Ninja <a href="http://www.op5.org/community/plugin-inventory/op5-projects/ninja" target="_blank">http://www.op5.org/community/plugin-inventory/op5-projects/ninja</a></li>
<li>Merlin <a href="http://www.op5.org/community/plugin-inventory/op5-projects/merlin" target="_blank">http://www.op5.org/community/plugin-inventory/op5-projects/merlin</a></li>
<li>Nagvis<a href="http://www.nagvis.org/" target="_blank"> http://www.nagvis.org/</a></li>
<li>pnp4nagios <a href="http://docs.pnp4nagios.org/" target="_blank">http://docs.pnp4nagios.org/</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2010%2F09%2F22%2Ftop-10-nagios-problems-solved-by-op5%2F&amp;title=Top%2010%20Nagios%20problems%20solved%2C%20by%20op5" id="wpa2a_14"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2010/09/22/top-10-nagios-problems-solved-by-op5/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>op5 Inspiration Day, September 14th</title>
		<link>http://www.it-slav.net/blogs/2010/08/09/op5-inspiration-day-september-14th/</link>
		<comments>http://www.it-slav.net/blogs/2010/08/09/op5-inspiration-day-september-14th/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 18:19:26 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Logserver]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[op5 Statistics]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1921</guid>
		<description><![CDATA[&#160; We would like to meet with you on an op5 Inspiration Day in September. It will be a day with topics like IT operations, cloud monitoring, virtualization, outsourcing and how to get control of everything in an easy way. The most important thing is to meet and listen to other users, hear about the [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<table class="contentpaneopen">
<tbody>
<tr>
<td valign="top" colspan="2">
<p><img width="250" height="55" alt="inspiration_day_logo" src="http://www.op5.com/op5media/op5/images/logos/inspiration_day_logo.png" /></p>
<p><span style="color: rgb(0, 0, 0);">We would like to meet with you on an op5 Inspiration Day in  September. It will be a day with topics like IT operations, cloud  monitoring, virtualization, outsourcing and how to get control of  everything in an easy way. The most important thing is to meet and  listen to other users, hear about the latest trends, have fun and be  inspired,&nbsp; as simple as that. So take the opportunity and </span><a title="register to op5 Inspiration Day" href="http://www.op5.com/op5/news/events/op5-inspiration-day#register"><span style="color: rgb(0, 0, 0);">register your interest today</span></a><span style="color: rgb(0, 0, 0);"> as the seats are limited! </p>
<p>            <span style="color: rgb(0, 0, 0);"><em>Most Welcome!!</em></span></span><em><span id="more-1921"></span></em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2><span style="color: rgb(0, 0, 0);">Date and Time</span></h2>
<p>            <span style="color: rgb(0, 0, 0);">             September 14th 2010 in Gothenburg, Sweden<br />
            </span><a href="http://www.google.com/calendar/event?action=TEMPLATE&amp;text=op5%20Inspiration%20Day&amp;dates=20100914/20100915&amp;details=We%20would%20like%20to%20meet%20with%20you%20on%20an%20op5%20Inspiration%20Day%20in%20September.%20It%20will%20be%20a%20day%20with%20topics%20like%20IT%20operations%2C%20cloud%20monitoring%2C%20virtualization%2C%20outsourcing%20and%20how%20to%20get%20control%20of%20everything%20in%20an%20easy%20way.%20The%20most%20important%20thing%20is%20to%20meet%20and%20listen%20to%20other%20users%2C%20hear%20about%20the%20latest%20trends%2C%20have%20fun%20and%20be%20inspired%2C%20%20as%20simple%20as%20that.%20So%20take%20the%20opportunity%20and%20register%20your%20interest%20today%20as%20the%20seats%20are%20limited%21%20%0A%0ATopics%0A%0A%20%20%20%20*%20Business%20and%20Case%20Studies%0A%20%20%20%20*%20Cloud%20monitoring%0A%20%20%20%20*%20SLA%20monitoring%0A%20%20%20%20*%20How%20to%20monitor%20outsourced%20services%0A%20%20%20%20*%20Development%20road%20map%0A%20%20%20%20*%20Performance%20Tuning%20and%20Benchmarks&amp;location=September%2014th%202010%20in%20Gothenburg%2C%20Sweden&amp;trp=true&amp;sprop=http%3A%2F%2Fwww.op5.com%2Fop5%2Fnews%2Fevents%2F1220-op5-inspiration-day&amp;sprop=name:www.op5.com" target="_blank"><span style="color: rgb(0, 0, 0);"><br />
            <img border="0" alt="" src="http://www.google.com/calendar/images/ext/gc_button6.gif" /></p>
<p>            </span></a><span style="color: rgb(0, 0, 0);">Please note that the seats are limited so register your interest now! </span><a href="http://www.google.com/calendar/event?action=TEMPLATE&amp;text=op5%20Inspiration%20Day&amp;dates=20100914/20100915&amp;details=We%20would%20like%20to%20meet%20with%20you%20on%20an%20op5%20Inspiration%20Day%20in%20September.%20It%20will%20be%20a%20day%20with%20topics%20like%20IT%20operations%2C%20cloud%20monitoring%2C%20virtualization%2C%20outsourcing%20and%20how%20to%20get%20control%20of%20everything%20in%20an%20easy%20way.%20The%20most%20important%20thing%20is%20to%20meet%20and%20listen%20to%20other%20users%2C%20hear%20about%20the%20latest%20trends%2C%20have%20fun%20and%20be%20inspired%2C%20%20as%20simple%20as%20that.%20So%20take%20the%20opportunity%20and%20register%20your%20interest%20today%20as%20the%20seats%20are%20limited%21%20%0A%0ATopics%0A%0A%20%20%20%20*%20Business%20and%20Case%20Studies%0A%20%20%20%20*%20Cloud%20monitoring%0A%20%20%20%20*%20SLA%20monitoring%0A%20%20%20%20*%20How%20to%20monitor%20outsourced%20services%0A%20%20%20%20*%20Development%20road%20map%0A%20%20%20%20*%20Performance%20Tuning%20and%20Benchmarks&amp;location=September%2014th%202010%20in%20Gothenburg%2C%20Sweden&amp;trp=true&amp;sprop=http%3A%2F%2Fwww.op5.com%2Fop5%2Fnews%2Fevents%2F1220-op5-inspiration-day&amp;sprop=name:www.op5.com" target="_blank"><span style="color: rgb(0, 0, 0);"><br />
            </span></a></p>
<ul>
<li><span style="color: rgb(0, 0, 0);">Last date for registration os August 31st.</span></li>
<li><span style="color: rgb(0, 0, 0);">The event is free</span></li>
<li><span style="color: rgb(0, 0, 0);">We will take a fee of &euro;250 for no shows that has not been cancelled 10 days prior to the event.</span></li>
</ul>
<p>            <span style="color: rgb(0, 0, 0);">             <br />
            </span></p>
<h2><span style="color: rgb(0, 0, 0);">Why attend</span></h2>
<ul>
<li><span style="color: rgb(0, 0, 0);">Meet and be inspired by the other users</span></li>
<li><span style="color: rgb(0, 0, 0);">Learn from know how and best practices</span></li>
</ul>
<ul>
<li><span style="color: rgb(0, 0, 0);">Become a member of op5 User Group</span></li>
</ul>
<p>            <span style="color: rgb(0, 0, 0);">             <br />
            </span></p>
<h2><span style="color: rgb(0, 0, 0);">Who should attend:</span></h2>
<p><span style="color: rgb(0, 0, 0);">op5 Customers and op5 Partners. CIOs, IT Managers, Operation  Managers, Network Managers, op5 System Administrators and other IT  decision makers. <br />
            Partners can also invite other contacts  who are interested in a stunning solution for monitoring the whole IT  infrastructure.</span></p>
<p>            <span style="color: rgb(0, 0, 0);">             <br />
            </span></p>
<h2><span style="color: rgb(0, 0, 0);">Topics</span></h2>
<ul>
<li><span style="color: rgb(0, 0, 0);">Business and Case Studies</span></li>
<li><span style="color: rgb(0, 0, 0);">Cloud monitoring</span></li>
<li><span style="color: rgb(0, 0, 0);">SLA monitoring</span></li>
<li><span style="color: rgb(0, 0, 0);">How to monitor outsourced services</span></li>
<li><span style="color: rgb(0, 0, 0);">Development road map</span></li>
<li><span style="color: rgb(0, 0, 0);">Performance Tuning and Benchmarks</span></li>
</ul>
<p>&nbsp;</p>
</td>
</tr>
</tbody>
</table>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2010%2F08%2F09%2Fop5-inspiration-day-september-14th%2F&amp;title=op5%20Inspiration%20Day%2C%20September%2014th" id="wpa2a_16"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2010/08/09/op5-inspiration-day-september-14th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>op5 and City Cloud introducing monitoring in the Cloud</title>
		<link>http://www.it-slav.net/blogs/2010/07/01/op5-and-city-cloud-introducing-monitoring-in-the-cloud/</link>
		<comments>http://www.it-slav.net/blogs/2010/07/01/op5-and-city-cloud-introducing-monitoring-in-the-cloud/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 07:19:03 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[cloud]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1884</guid>
		<description><![CDATA[&#160; &#160; &#160; op5 is the leading provider of monitoring software in Europe. op5 uses Open Source and their monitoring services are now available in the Cloud via City Cloud, a cloud computing service from City Network. By introducing monitoring in a new business model, customers are now able to get professional monitoring in the [...]]]></description>
			<content:encoded><![CDATA[<h3>&nbsp;</h3>
<div class="newsdesk_web_image"><img alt="Op5_cloud_monitor_large" src="http://www.mynewsdesk.com/files/05550996bb3bb0bd6d46515f8f4b8633/resources/ResourceWebImage/thumbnails/op5_cloud_monitor_large.png" /></div>
<div class="newsdesk_web_image">&nbsp;</div>
<div class="newsdesk_web_image">&nbsp;</div>
<div class="newsdesk_article_text">
<p>op5 is the leading provider of <a href="http://www.op5.com/op5/products/network-monitor">monitoring  software</a> in Europe. op5 uses Open Source  and their monitoring  services are now available in the Cloud via City Cloud, a cloud  computing service from City Network. By introducing monitoring in a new  business model, customers are now able to get professional monitoring in  the Cloud which is both more cost-efficient and flexible.</p>
<p>By  providing monitoring in the cloud op5 are able to give their existing  customers an external solution to  monitor their web based services,  regardless if they are inside or outside the cloud. This gives the  customer the ability to measure and control the user experience in a  specific service. City Network also benefits from the introduction of  op5 Cloud Monitor. The 500 customers using City Cloud can now create  servers with the sole purpose of monitoring their virtual machines  directly through the service provided by op5.</p>
<p>- The fact that op5  introduces their external monitoring services in the cloud using City  Cloud is a great acknowledgment, not only for City Cloud but also for  cloud computing in general. It&acute;s the beginning of a new era where both  small and enterprise companies can benefit from the cloud and services  within the cloud says Johan Christenson, Chairman at City Cloud.</p>
<p>-  Being the leading provider in any field means that you always need to  be innovative both with your products and your business models.  Providing our monitoring service in City Cloud is a natural step for us  and creates great advantages for our customers. More flexible, installed  and ready within 15 minutes and cost efficient are the key ingredients  that we think makes this solution suitable for everyone in need of  professional monitoring says Jan Josephson, CEO at op5.</p>
<p><span id="more-1884"></span>&nbsp;</p>
<p><span><strong>About  City Network</strong></span><span><span><br />
With more than 10 000  customers in Scandinavia City Network is one of the leading hosting  providers in northern Europe. City Network is the only Scandinavian  hosting provider to offer a full service menu of hosting related  services such as shared hosting to dedicated servers to cloud computing.  In addition City Network is a registrar of many top level domains and  offer a full suite of domain services. Box Hosting, </span></span><a href="http://onlinebackup.se/" target="_blank">onlinebackup.se</a><span><span>  is brands owned by City Network. Visit us at </span></span><a href="http://www.citycloud.eu/">www.citycloud.eu</a><span><span> for  more information on City Cloud and</span></span><a href="http://www.citynetwork.eu/" target="_blank"><span><span><span> </span></span></span></a><a href="http://www.citynetwork.eu/">www.citynetwork.eu</a><span><span> for  corporate information or </span></span><a href="http://www.citycloud.se/">www.citycloud.se</a><span><span> for  Scandinavian version of City Cloud.</span></span></p>
<p>&nbsp;</p>
<p><strong>About  op5<br />
</strong>op5 is a market leading developer of Open Source  Management solutions develops and delivers open source based software  for monitoring and administration of IT systems and networks. The  solutions are built on open source code that op5 extends and markets and  supports as complete systems. The main products are op5 Monitor, op5  Statistics and op5 LogServer. op5 has customers such as Aftonbladet,  Volvo, SAAB, Max Matthiessen, Swedish Wetherservice (SMHI), <span>CrossKey  Banking, SAAB Industries, Bring City Mail, Channel 5 and Swedish  Television (SVT), </span>Swedish Customs and many other State  authorities, local authorities and municipalities. op5 was established  in 2003, has offices in Stockholm and Gothenburg and partners in several  countries. op5 is owned by its founders and employees, Pod Venture  Partners and KTH Chalmers Capital.</p>
<p>More information about op5 can  be found at <a href="http://www.op5.com/">http://www.op5.com</a> </p>
<p>For more  information please contact:<br />
Jan Josephson, CEO at op5 &#8211; <a href="mailto:jan.josephson@op5.com" target="_blank">jan.josephson@op5.com</a><br />
Johan  Christenson, Chairman at City Network Hosting AB &#8211; <a href="mailto:johan@citynetwork.se" target="_blank">johan@citynetwork.se</a></p>
</div>
<div class="newsdesk_related_items">
<h6>Contacts</h6>
<ul class="newsdesk_list">
<li>
<h5><a href="http://www.op5.com/op5/news/press-release?nd_ukey=05550996bb3bb0bd6d46515f8f4b8633&amp;nd_view=view_contact_person&amp;nd_id=4751">Jan  Josephson</a></h5>
<div class="newsdesk_image"><a href="http://www.op5.com/op5/news/press-release?nd_ukey=05550996bb3bb0bd6d46515f8f4b8633&amp;nd_view=view_contact_person&amp;nd_id=4751"><img alt="Jj_2_stor_small" src="http://www.mynewsdesk.com/files/05550996bb3bb0bd6d46515f8f4b8633/resources/ResourceWebImage/thumbnails/jj_2_stor_small.jpg" /></a></div>
</li>
</ul>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2010%2F07%2F01%2Fop5-and-city-cloud-introducing-monitoring-in-the-cloud%2F&amp;title=op5%20and%20City%20Cloud%20introducing%20monitoring%20in%20the%20Cloud" id="wpa2a_18"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2010/07/01/op5-and-city-cloud-introducing-monitoring-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splunk are not open</title>
		<link>http://www.it-slav.net/blogs/2010/05/25/splunk-are-not-open/</link>
		<comments>http://www.it-slav.net/blogs/2010/05/25/splunk-are-not-open/#comments</comments>
		<pubDate>Tue, 25 May 2010 14:02:32 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[splunk]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1806</guid>
		<description><![CDATA[&#160; I have registred me to attend&#160;the open Splunk event in Stockholm. Within 24 hours I&#160;got an email telling that they do not want competitors at the event and would like to discuss the purpose of me attending. I&#160;called the Splunk representative and told him that op5 thinks Splunk is a competitor in some cases [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I have registred me to attend&nbsp;the open <a href="http://www.splunk.com">Splunk</a> <a href="http://www.splunk.com/goto/SplunkLive_Stockholm_0510">event in Stockholm</a>. Within 24 hours I&nbsp;got an email telling that they do not want competitors at the event and would like to discuss the purpose of me attending.</p>
<p>I&nbsp;called the Splunk representative and told him that op5 thinks Splunk is a competitor in some cases and in some cases we have products that run in parallel at customer sites. We want to integrate <a href="http://www.op5.com/op5/products/network-monitor">op5 Monitor</a> with Splunk because we have got the question a couple of times from customers and potential customers. My intention of attending the meeting is to get a better understanding of Splunk so op5 can integrate our products, so our customers get the products that suits them best. If Splunk wants to be part of the integration, the better.</p>
<p>The Splunk representative still do not want me to attend. At Splunk they will discuss this matter internally but so far, this is their view.</p>
<p>&nbsp;</p>
<p>I&nbsp;would really like to make a parallel with another op5 competitor, W&uuml;rth, at their <a href="http://www.wuerth-phoenix.com/en/company/event/the-agenda/">event</a> they invited op5 as key speaker and I&nbsp;really recommend Splunk to reconsider their decision.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2010%2F05%2F25%2Fsplunk-are-not-open%2F&amp;title=Splunk%20are%20not%20open" id="wpa2a_20"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2010/05/25/splunk-are-not-open/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>op5 Monitor 5.0 Beta</title>
		<link>http://www.it-slav.net/blogs/2010/02/26/op5-monitor-5-0-beta/</link>
		<comments>http://www.it-slav.net/blogs/2010/02/26/op5-monitor-5-0-beta/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 19:58:49 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1626</guid>
		<description><![CDATA[The release of the next generation Open Source Network Monitoring Software is only weeks away with the release of op5 Monitor 5. Here you can download a Beta version of the sofware intended for testing och evaluation or try it at a live demo. op5 Monitor Beta, virtual image in ovf format Try op5 Monitor [...]]]></description>
			<content:encoded><![CDATA[<p>The release of the next generation Open Source Network Monitoring Software is only weeks away with the release of op5 Monitor 5. Here you can download a Beta version of the sofware intended for testing och evaluation or try it at a live demo.</p>
<ul>
<li><a href="http://www.op5.com/op5/products/network-monitor/download-50-beta#">op5 Monitor Beta, virtual image in ovf format</a></li>
<li><a href="https://beta.op5.com/ninja">Try op5 Monitor Beta</a></li>
</ul>
<p>The op5 Monitor Beta use <a href="http://www.op5.org/community/projects/ninja">Ninja</a> as GUI and <a href="http://www.op5.org/community/projects/merlin">Merlin</a> as a databasebackend.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2010%2F02%2F26%2Fop5-monitor-5-0-beta%2F&amp;title=op5%20Monitor%205.0%20Beta" id="wpa2a_22"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2010/02/26/op5-monitor-5-0-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merlin and Ninja roadmap</title>
		<link>http://www.it-slav.net/blogs/2010/02/17/merlin-and-ninja-roadmap/</link>
		<comments>http://www.it-slav.net/blogs/2010/02/17/merlin-and-ninja-roadmap/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 12:24:38 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1598</guid>
		<description><![CDATA[An email sent to op5-users from op5s CTO, Peter &#214;stlin. &#8211;cut&#8211; Hi All, The op5 devel team has been kind of quiet on the list lately. The reason for this is that we have been working very hard to complete the next release of Merlin and Ninja. The result of this will be the release [...]]]></description>
			<content:encoded><![CDATA[<p>An email sent to op5-users from op5s CTO, Peter &Ouml;stlin.</p>
<p>&#8211;cut&#8211;</p>
<address>Hi All,</address>
<address>The op5 devel team has been kind of quiet on the list lately. The<br />
reason for this is that we have been working very hard to complete the<br />
next release of Merlin and Ninja. The result of this will be the<br />
release of op5 Monitor 5.0 scheduled for public availability April 13.<br />
In this release Merlin and Ninja will be version 1.0 which mean all<br />
our customers and users will benefit from production quality tools.<br />
<span id="more-1598"></span><br />
Compared to the currently released versions, Merlin v0.6.6 and Ninja<br />
v0.3.6, the release include for example:</address>
<ul>
<li>Implementation of the missing Nagios cgi&#8217;s. (showlog, history,trends, notifications etc)</li>
<li>Include Avail/SLA reports in Ninja&nbsp; (Avail reports are an improved version of the Nagios avail reports and SLA is a new report type)</li>
<li>Lots of bugfixes</li>
</ul>
<address>&nbsp;</address>
<address>&nbsp;</address>
<address>The schedule for the release of op5 Monitor 5.0 (as well as Merlin 1.0<br />
and Ninja 1.0) is as follow:</address>
<address>2010-02-26 &#8211; Beta release<br />
2010-03-12 &#8211; Release candidate 1<br />
2010-03-26 &#8211; Stable release is tagged and build<br />
2010-04-13 &#8211; op5 Monitor 5.0 General Availability</address>
<address>&nbsp;</address>
<address>&nbsp;</address>
<address>As always, this is a plan and might change slightly. There might be<br />
need for extra beta/rc builds for example. We will keep you posted<br />
regarding the progress.</address>
<address>Cheers,<br />
Peter &Ouml;stlin<br />
op5 AB</address>
<p>&#8211;cut&#8211;</p>
<h2>Links</h2>
<ul>
<li><a href="http://www.op5.org/community/projects/ninja">Ninja</a>, Nagios Is Now Just Awesome</li>
<li><a href="http://www.op5.org/community/projects/merlin">Merlin</a>, Module for Endless Redundacy and Loadbalancing In Nagios</li>
<li><a href="http://www.op5.com">op5</a>, a company with enterprise network- and systems management based on OpenSource.</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2010%2F02%2F17%2Fmerlin-and-ninja-roadmap%2F&amp;title=Merlin%20and%20Ninja%20roadmap" id="wpa2a_24"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2010/02/17/merlin-and-ninja-roadmap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keep track of unused switch ports with Nagios or op5 Monitor</title>
		<link>http://www.it-slav.net/blogs/2009/11/24/keep-track-of-unused-switch-ports-with-nagios-or-op5-monitor/</link>
		<comments>http://www.it-slav.net/blogs/2009/11/24/keep-track-of-unused-switch-ports-with-nagios-or-op5-monitor/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 10:12:02 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[unused switch ports]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1485</guid>
		<description><![CDATA[Background I&#160;was reading the Swedish computer magazine, Tech World. There was an article about an appliance solution that could give a report about unused switch ports. The box PortIQ from Infoblox costs approximatly 10.000 Euro. op5 has developed this feature at a customer site and is included with op5 Monitor, op5 has published the code [...]]]></description>
			<content:encoded><![CDATA[<h2>Background</h2>
<p>I&nbsp;was reading the Swedish computer magazine, <a target="_blank" href="http://techworld.idg.se/">Tech World</a>. There was an article about an appliance solution that could give a report about unused switch ports. The box <a target="_blank" href="http://www.infoblox.com/products/portiq-appliances.cfm">PortIQ</a> from Infoblox costs approximatly 10.000 Euro.</p>
<p><a target="_blank" href="http://www.op5.com">op5</a> has developed this feature at a customer site and is included with <a target="_blank" href="http://www.op5.com/op5/products/network-monitor">op5 Monitor</a>, op5 has published the code as <a target="_blank" href="http://git.op5.org/git/">opensource</a>.</p>
<p>This guide will describe howto get it running in op5 Monitor. op5 Monitor is vanilla Nagios with some addons so it should be no problem to follow this guide in a Nagios environment</p>
<p>&nbsp;</p>
<p><span id="more-1485"></span>&nbsp;</p>
<h2>Installation</h2>
<p>1. Update your op5 Monitor or <a href="http://git.op5.org/git/?p=nagios/op5plugins.git;a=tree;f=check_portstatus;h=120bf07e50d72c1a1beb0a8963cd45a5341e7727;hb=5759746d3bcd457d344c21d9befa5611515a9acb" target="_blank">download</a> the plugin and report script.</p>
<p>&nbsp;</p>
<p>2. Create metadata for check_portstatus as $USER1$/check_portstatus -H  $HOSTADDRESS$</p>
<p>in checkcommands.cfg:</p>
<p><code># command 'check_portstatus'<br />
define command{<br />
&nbsp;&nbsp;&nbsp; command_name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_portstatus<br />
&nbsp;&nbsp;&nbsp; command_line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $USER1$/check_portstatus -H $HOSTADDRESS$<br />
&nbsp;&nbsp;&nbsp; }</code><br />
&nbsp;</p>
<p>3. mkdir /var/spool/check_portstatus</p>
<p>&nbsp;</p>
<p>4. chown monitor:apache /var/spool/check_portstatus</p>
<p>&nbsp;</p>
<p>5. cp /opt/monitor/op5/portstatus/portstatus.php  /var/www/html/portstatus.php</p>
<p>&nbsp;</p>
<p>6. Define your service i.e. services.cfg:</p>
<p><code># service 'Portstatus'<br />
define service{<br />
&nbsp;&nbsp;&nbsp; use&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default-service<br />
&nbsp;&nbsp;&nbsp; host_name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gw<br />
&nbsp;&nbsp;&nbsp; service_description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Portstatus<br />
&nbsp;&nbsp;&nbsp; check_command&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_portstatus<br />
&nbsp;&nbsp;&nbsp; }</code><br />
&nbsp;</p>
<h2>&nbsp;</h2>
<h2>The result</h2>
<p>The screenshot below shows a Cisco switch with alot of unused ports.</p>
<p><img width="692" height="713" src="http://www.it-slav.net/blogs/wp-content/uploads/2009/11/portstatus1.png" alt="portstatus" title="portstatus" class="aligncenter size-full wp-image-1488" /></p>
<p>&nbsp;</p>
<h2>&nbsp;</h2>
<h2>Conclusions</h2>
<p>This article shows how easy it is to modify Nagios and other opensource tools to give you what you want. Do not hesitate to contact <a href="javascript:location.href='mailto:'+String.fromCharCode(112,101,116,101,114,64,105,116,45,115,108,97,118,46,110,101,116)+'?'">me</a> or <a target="_blank" href="http://www.op5.com">op5</a> to help you enhance you Nagios or op5 installation.</p>
<h2>&nbsp;</h2>
<h2>Links</h2>
<ul>
<li><a target="_blank" href="http://www.op5.com">op5</a></li>
<li><a target="_blank" href="http://www.op5.com/op5/products/network-monitor">op5 Monitor</a></li>
<li><a target="_blank" href="http://www.nagios.org">Nagios</a></li>
<li><a target="_blank" href="http://www.infoblox.com/products/portiq-appliances.cfm">PortIQ</a> appliance box from Infoblox</li>
<li><a target="_blank" href="http://techworld.idg.se/">Tech world</a></li>
</ul>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F11%2F24%2Fkeep-track-of-unused-switch-ports-with-nagios-or-op5-monitor%2F&amp;title=Keep%20track%20of%20unused%20switch%20ports%20with%20Nagios%20or%20op5%20Monitor" id="wpa2a_26"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/11/24/keep-track-of-unused-switch-ports-with-nagios-or-op5-monitor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>op5 bugtracker online and open for registration</title>
		<link>http://www.it-slav.net/blogs/2009/10/02/op5-bugtracker-online-and-open-for-registration/</link>
		<comments>http://www.it-slav.net/blogs/2009/10/02/op5-bugtracker-online-and-open-for-registration/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 11:38:24 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Logserver]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[op5 Statistics]]></category>
		<category><![CDATA[merlin]]></category>
		<category><![CDATA[ninja]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1385</guid>
		<description><![CDATA[https://bugs.op5.com/ is now also open for external users to sign up. By signing up you can post bug and feature requests, post bug-notes etc. Before doing so, please check out the &#34;How to Submit Bug/Feature&#34; documentation available from within the bug tracker. Note: op5 opensource projects Merlin, Ninja and Nacoma are for now available as [...]]]></description>
			<content:encoded><![CDATA[<pre wrap=""><a href="https://bugs.op5.com/" class="moz-txt-link-freetext">https://bugs.op5.com/</a> is now also open for external users to sign up. By signing up you can post bug and feature requests, post bug-notes etc.

Before doing so, please check out the &quot;How to Submit Bug/Feature&quot; documentation available from within the bug tracker.

Note: op5 opensource projects Merlin, Ninja and Nacoma are for now available as categories on Project: op5 Monitor, it's simply to make it easy for us to show a product roadmap/changelog although it might be a bit &quot;unlogical&quot; for people using only Merlin.</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F10%2F02%2Fop5-bugtracker-online-and-open-for-registration%2F&amp;title=op5%20bugtracker%20online%20and%20open%20for%20registration" id="wpa2a_28"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/10/02/op5-bugtracker-online-and-open-for-registration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>op5 announces the release of op5 Monitor 4.2</title>
		<link>http://www.it-slav.net/blogs/2009/09/15/op5-announces-the-release-of-op5-monitor-4-2/</link>
		<comments>http://www.it-slav.net/blogs/2009/09/15/op5-announces-the-release-of-op5-monitor-4-2/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 09:00:10 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[ninja]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1346</guid>
		<description><![CDATA[op5 AB is a world leading OSM &#8211; Open Source Management &#8211; company that delivers software based on open source for control of IT systems and networks. The award winning op5 Monitor is now released with important enhancements that will enable customers and other vendors to further improve usability and integration for optimized IT monitoring. [...]]]></description>
			<content:encoded><![CDATA[<p><em>op5 AB is a world leading OSM &#8211; Open Source Management &#8211; company that delivers software based on open source for control of IT systems and networks. The award winning op5 Monitor is now released with important enhancements that will enable customers and other vendors to further improve usability and integration for optimized IT monitoring. </em></p>
<p>&nbsp;</p>
<p>op5 Monitor is based on Nagios*, the industry standard for enterprise-class IT infrastructure monitoring. Until now, op5 Monitor has had to rely on the basics of standard Nagios Graphical User Interface (GUI) for presentation and overall user experience. With the release of op5 Monitor 4.2 we include a fully functional preview of a brand new GUI, now based on the Ninja Open Source project. The new GUI is based on a modern PHP architecture and is now shipped for real operation testing.<span id="more-1346"></span></p>
<p>&nbsp;</p>
<p>Usability, flexibility and visualization probably stands for more then 80% of overall customer value. Our solutions for full control of our customers IT systems hold a huge amount of both historical data and instant events. Making this information accessible and easy to understand for as many as possible is the single most effective value for our customers. And who is better to give us important feedback on GUI related features and functions then our customers? This is why we now choose to include an early version for test, evaluation and feedback purposes, all to secure the best for the coming official release of Monitor 5.0 later this year, says Jan Josephson, CEO op5 AB.</p>
<p>&nbsp;</p>
<p>The new GUI with its flexible interface based on the PHP framework makes it much easier to provide customizations for customers specific needs. With the introduction of widget and support session based authentication it is now possible to fully personalize views and settings. The widget technology further provides a future standard way for two way synchronization and presentation of customer unique data and the presentation of it.</p>
<p>&nbsp;</p>
<p>The ability to search, sort and filter vast data volumes has been greatly improved with pagination for views of hosts and services and the possibility to sort by column. The new improved search feature includes auto suggestion and let you search on hosts, services host groups and service groups. <br />
These changes greatly improves the possibilities to answer to customer needs and to develop customized features that has not been possible until now due to the restrictions from the old GUI.<br />
A new module for network visualization (the NagVis project) has been included in op5 Monitor 4.2. You can now visualize your infrastructure using three different map types;</p>
<ul>
<li>Auto map, a auto drawn topology map using parent / child relationships.</li>
<li>Static Map makes it possible to put any object (host, service, host group or service group) on an image of choice.</li>
<li>Geo map, uses Google maps API, drawing a map by using addresses or gps coordinates on your monitored objects. Object and status information as well as links can be included in the map. The maps can be visualized as widgets on the tactical overview or be used on big monitors in operation centers.</li>
<li>Largest OSS-project in Network Monitoring, Nagios.</li>
</ul>
<p>&nbsp;</p>
<p>About op5 AB op5 AB is a world leading OSM &#8211; Open Source Management &#8211; company that delivers software based on open source for control of IT systems and networks. Its main products are op5 Monitor, op5 Statistics and op5 LogServer. The products are based on open source code that op5 further develops, packages, and sells as complete products and systems with services and support. p5 has a large selection of primarily European clients from different market segments for example AGA Linde Gas, The Swedish Customs Service (Tullverket) and other parastatals, several county councils, municipalities and municipal companies. op5 was founded in 2003. The company is based in Sweden with offices in Stockholm and Gothenburg.</p>
<p>&nbsp;</p>
<p><a href="http://www.op5.com/">www.op5.com</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F09%2F15%2Fop5-announces-the-release-of-op5-monitor-4-2%2F&amp;title=op5%20announces%20the%20release%20of%20op5%20Monitor%204.2" id="wpa2a_30"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/09/15/op5-announces-the-release-of-op5-monitor-4-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>op5 goes west</title>
		<link>http://www.it-slav.net/blogs/2009/09/15/op5-goes-west/</link>
		<comments>http://www.it-slav.net/blogs/2009/09/15/op5-goes-west/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 06:48:05 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[op5]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1341</guid>
		<description><![CDATA[op5 Announces Global Partner TruePath Technologies, Inc. For U.S. Markets FOR IMMEDIATE RELEASE -August 5, 2009-Swedish OS Management IT monitoring software developer, op5, announced today their partnership alliance with American company TruePath Technologies, Inc. - one of the premier monitoring service companies in the United States. Stockholm, Sweden--In an announcement released earlier this month by [...]]]></description>
			<content:encoded><![CDATA[<pre><a href="http://www.op5.com">op5</a> Announces Global Partner <a href="http://www.truepathtechnologies.com/">TruePath Technologies</a>, Inc. For U.S.
Markets 

FOR IMMEDIATE RELEASE 

-August 5, 2009-Swedish OS Management IT monitoring software developer,
op5, announced today their partnership alliance with American company
TruePath Technologies, Inc. - one of the premier monitoring service
companies in the United States.
<span id="more-1341"></span>
Stockholm, Sweden--In an announcement released earlier this month by the
world renowned Open Source Management monitoring software developer op5,
TruePath Technologies, Inc. has become a well received partner for op5's
ever expanding global markets. TruePath Technologies, Inc. (TruePath),
based in Rochester, New York, is a Network and Enterprise Monitoring
Service company. TruePath's specialty is identifying the best solutions
for business clients by installing, configuring and managing all aspects
of client enterprise monitoring. Now with the inclusion of op5's suite
of OS monitoring software, TruePath has a more complete package for its
Go-to-Market approach. 

TruePath Technologies, Inc., a Network and Enterprise Monitoring Service
company, has historically been a service company only. Tailoring to the
needs of its customers large and small, TruePath would guide them
through their monitoring needs without previously leading with any one
particular open source software. &ldquo;op5 changed our way of thinking to
give the customer a choice that we feel is the leader in monitoring
software,&rdquo; states Founder/Senior Engineer of TruePath Technologies,
Douglas Mauro. &ldquo;Our customers value our opinion in giving them the best
services and products they desire along with a trusted relationship that
speaks above the rest.&rdquo; TruePath felt it was time to answer the call
when asked for help with choosing the best monitoring software packages
with their high level of monitoring service. 

&ldquo; TruePath worked with us to develop a software package that gives us
additional visibility into our network. TruePath was, and continues to
be, a collaborative partner for Fibertech Networks. &ldquo; - J. Drew Mullin,
Director of Product Management &amp; Development, Fibertech Networks 

TruePath originally reached out to op5 to help connect with clients for
op5's ever expanding geographic markets. &quot;We are extremely pleased with
the partnership of TruePath Technologies. Many of our large European
based customers have operations in the U.S.; the partnership will enable
an enhanced service level to these U.S. corporations. Obviously the same
will apply for U.S. enterprises with operations in the European region,&rdquo;
says Fredrik &Aring;kerstr&ouml;m, Director of Sales/Founder op5. TruePath's
Founder/Senior Engineer Douglas Mauro agrees, adding, &rdquo;From our first
discussions we could immediately see that our services were a perfect
fit leading to an inevitable extension of our combined visions.&rdquo; With
op5 as a monitoring software partner, TruePath will enable the IT client
community to more proactively drive the optimization and reliability of
their business infrastructure. In addition to op5's suite of software
options, TruePath provides responsive support options including 'ease of
use' ticketing system; phone, network and e-mail in the U.S. Their
committed team of support specialists provides effective assistance
where round the clock monitoring of critical IT infrastructure is
demanded. 

&quot; Performance management is becoming increasingly important for
enterprises as they seek to align their IT infrastructure with critical
business processes to become more competitive and responsive to changing
customer needs. &quot; - IDC/Lucent Technologies, HP Networking White Paper 

op5, in conjunction with TruePath Technologies, provides an adaptable
monitoring program that empowers clients with the capability to diminish
the burden of IT infrastructure outages. 

Gartner has named Swedish Open Source Management company op5 as one of
six cool vendors in the global report &quot;Cool Vendors in IT Operations
2008.&quot; Just a few examples from Gartner: 

* op5 Network Management Suite was developed to manage both easy and
complex heterogeneous IT-environments 

* op5's builds on different open source projects - all op5 products are
delivered to the customer with full access to the source code. This
provides additional flexibility for customers 

* op5's approach minimizes the risks associated with open source 

* Deployment of op5's products is fairly less demanding in terms of time
and resources 

With op5's Open Source monitoring software and TruePath Technologies
partnering services, clients will continue to gain valuable insight into
their IT infrastructure. By uncovering problems before they affect
critical business operations, companies can continue to concentrate on
their day to day operations without fearing the unknown. 

Contact:
Douglas R. Mauro Founder / Senior Engineer
TruePath Technologies Inc.
Phone: 585.672.5481
Web: http://TruePathTechnologies.com/
Email: dmauro@TruePathTechnologies.com 

Other Emails:
sales@TruePathTechnologies.com
info@TruePathTechnologies.com
careers@truepathtechnologies.com 

Links:
TruePath Home-Page: http://www.truepathtechnologies.com/
op5 Home-Page: http://www.op5.com/
Brochure: http://www.truepathtechnologies.com/pdfs/TruePathTechnologies_Brochure.pdf 

Mailing Address: TruePath Technologies Inc. PO Box 263 Fairport, NY
14450 Tel: 585.672.5481 Fax: 585.672.5482
</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F09%2F15%2Fop5-goes-west%2F&amp;title=op5%20goes%20west" id="wpa2a_32"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/09/15/op5-goes-west/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninja, the new Nagios GUI, preview</title>
		<link>http://www.it-slav.net/blogs/2009/09/12/ninja-the-new-nagios-gui-preview/</link>
		<comments>http://www.it-slav.net/blogs/2009/09/12/ninja-the-new-nagios-gui-preview/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 13:27:33 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[geomap]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Nagios gui]]></category>
		<category><![CDATA[ninja]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1314</guid>
		<description><![CDATA[&#160; Next week, op5 will release the new Nagios GUI called Ninja. The license is GPL and several people has reported the GUI work perfectly well on vanilla Nagios. Ninja uses a database backend. Merlin, another op5 developed software feeds the Nagios information into the database. Links: op5 -OpenSource based management software company Ninja- Nagios [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Next week, op5 will release the new Nagios GUI called Ninja. The license is GPL and several people has reported the GUI work perfectly well on vanilla Nagios. Ninja uses a database backend. Merlin, another op5 developed software feeds the Nagios information into the database.</p>
<p>Links:</p>
<ul>
<li><a href="http://www.op5.com">op5</a> -OpenSource based management software company</li>
<li><a href="http://www.op5.org/community/projects/ninja">Ninja</a>- Nagios Is Now Just Awesome</li>
<li><a href="http://www.op5.org/op5media/op5.org/merlin/merlin_100x100.png">Merlin</a> &#8211; Module for Effortless Redundancy and Loadbalancing In Nagios</li>
<li><a href="https://beta.op5.com/ninja">Try</a> &#8211; Ninja GUI</li>
</ul>
<p>Some screenshoots below:</p>
<p>&nbsp;</p>
<p>&nbsp;Geomap, based on google maps</p>
<p><img height="448" width="943" class="aligncenter size-full wp-image-1325" title="geomap" alt="geomap based in googlemaps" src="http://www.it-slav.net/blogs/wp-content/uploads/2009/09/geomap3.png" /></p>
<p>&nbsp;<span id="more-1314"></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Tactical overview, with widgets that could be dragged and dropped<img class="aligncenter size-full wp-image-1328" title="tacticaloverview" alt="tacticaloverview" src="http://www.it-slav.net/blogs/wp-content/uploads/2009/09/tacticaloverview.png" style="width: 951px; height: 442px;" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Host details</p>
<p><img class="aligncenter size-full wp-image-1331" title="hostdetails" alt="hostdetails" src="http://www.it-slav.net/blogs/wp-content/uploads/2009/09/hostdetails.png" style="width: 956px; height: 441px;" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Nagvis integration</p>
<p><img height="663" width="878" src="http://www.it-slav.net/blogs/wp-content/uploads/2009/09/nagvis-demo.png" alt="nagvis-demo" title="nagvis-demo" class="aligncenter size-full wp-image-1333" /></p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F09%2F12%2Fninja-the-new-nagios-gui-preview%2F&amp;title=Ninja%2C%20the%20new%20Nagios%20GUI%2C%20preview" id="wpa2a_34"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/09/12/ninja-the-new-nagios-gui-preview/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Monitoring VMware ESX 3.x, ESXi, vSphere 4 and vCenter Server with Nagios or op5 Monitor</title>
		<link>http://www.it-slav.net/blogs/2009/09/03/monitoring-vmware-esx-3-x-esxi-vsphere-4-and-vcenter-server-with-nagios-or-op5-monitor/</link>
		<comments>http://www.it-slav.net/blogs/2009/09/03/monitoring-vmware-esx-3-x-esxi-vsphere-4-and-vcenter-server-with-nagios-or-op5-monitor/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 18:08:58 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[esx3.x]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[VmWare]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1279</guid>
		<description><![CDATA[Op5 has written an excellent article howto monitor Esx3.x, ESXi, vSphere 4 and vCenter Server with op5 Monitor. This article is op5 Monitor centric but op5 Monitor is based on Nagios so this article can be used to implement Nagios vmware monitoring. The plugin used to gather the information is GPLd and developed by op5. [...]]]></description>
			<content:encoded><![CDATA[<p>Op5 has written an <a target="_blank" href="http://www.op5.com/how-to/monitoring-vmware-esx-3-x-esxi-vsphere-4-and-vcenter-server/">excellent article</a> howto monitor Esx3.x, ESXi, vSphere 4 and vCenter Server with <a target="_blank" href="http://www.op5.com/op5/products/monitor">op5 Monitor</a>. This article is op5 Monitor centric but op5 Monitor is based on <a target="_blank" href="http://www.nagios.org">Nagios</a> so this article can be used to implement Nagios vmware monitoring.</p>
<p>The <a target="_blank" href="http://git.op5.org/git/?p=nagios/op5plugins.git;a=blob_plain;f=check_esx3.pl;hb=HEAD">plugin</a> used to gather the information is GPLd and developed by op5.</p>
<h3>Links</h3>
<ul>
<li>The <a target="_blank" href="http://www.op5.com/how-to/monitoring-vmware-esx-3-x-esxi-vsphere-4-and-vcenter-server/">article </a>describing howto monitor vmware.</li>
<li><a target="_blank" href="http://www.op5.com/op5/products/monitor">op5 Monitor</a> &#8211; Enterprise class supported monitoring solution based on Nagios.</li>
<li><a href="http://www.nagios.org">Nagios</a> &#8211; OpenSource Enterprise class monitoring solution.</li>
<li>Check_esx <a target="_blank" href="http://git.op5.org/git/?p=nagios/op5plugins.git;a=blob_plain;f=check_esx3.pl;hb=HEAD">plugin</a> created by op5</li>
<li><a target="_blank" href="http://www.op5.com">op5</a> &#8211; The company behind he plugin.</li>
</ul>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F09%2F03%2Fmonitoring-vmware-esx-3-x-esxi-vsphere-4-and-vcenter-server-with-nagios-or-op5-monitor%2F&amp;title=Monitoring%20VMware%20ESX%203.x%2C%20ESXi%2C%20vSphere%204%20and%20vCenter%20Server%20with%20Nagios%20or%20op5%20Monitor" id="wpa2a_36"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/09/03/monitoring-vmware-esx-3-x-esxi-vsphere-4-and-vcenter-server-with-nagios-or-op5-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Nagios plugins from op5</title>
		<link>http://www.it-slav.net/blogs/2009/06/09/free-nagios-plugins-from-op5/</link>
		<comments>http://www.it-slav.net/blogs/2009/06/09/free-nagios-plugins-from-op5/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 07:17:10 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1134</guid>
		<description><![CDATA[op5 develops plugins for op5 Monitor, based on Nagios. As a courtesy to the community the plugins developed are free and can be downloaded from: http://www.op5.org/community/projects/op5-plugins The plugins is also located in a Git repository and can be checked out from: http://git.op5.org/git/]]></description>
			<content:encoded><![CDATA[<p>op5 develops plugins for op5 Monitor, based on Nagios. As a courtesy to the community the plugins developed are free and can be downloaded from:</p>
<p><a href="http://www.op5.org/community/projects/op5-plugins" target="_blank">http://www.op5.org/community/projects/op5-plugins</a></p>
<p>The plugins is also located in a Git repository and can be checked out from:</p>
<p><a href="http://git.op5.org/git/" target="_blank">http://git.op5.org/git/</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F06%2F09%2Ffree-nagios-plugins-from-op5%2F&amp;title=Free%20Nagios%20plugins%20from%20op5" id="wpa2a_38"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/06/09/free-nagios-plugins-from-op5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nordic meet on Nagios is over.</title>
		<link>http://www.it-slav.net/blogs/2009/06/04/nordic-meet-on-nagios-is-over/</link>
		<comments>http://www.it-slav.net/blogs/2009/06/04/nordic-meet-on-nagios-is-over/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 17:51:00 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1123</guid>
		<description><![CDATA[It has been very interesting and two intensive days. The highlights IMHO: Tobias Oitiker gave a very good presentation about the linux kernel caching and described how it affected RRDtools. Markus Almroth, describes Sysnagios which did the opposite of most monitoring projects. Sysnagios decentralized the configuration of systems and network monitoring in a controlled way. [...]]]></description>
			<content:encoded><![CDATA[<p>It has been very interesting and two intensive days. The highlights IMHO:</p>
<ul>
<li>Tobias Oitiker gave a very good presentation about the linux kernel caching and described how it affected <a href="http://oss.oetiker.ch/rrdtool/" target="_blank">RRDtools</a>.</li>
<li>Markus Almroth, describes Sysnagios which did the opposite of most monitoring projects. Sysnagios decentralized the configuration of systems and network monitoring in a controlled way. I will come back to this topic in my blog.</li>
<li>Per Åsberg talked about <a href="http://www.op5.org/community/projects/ninja" target="_blank">Ninja</a>, a new GUI for Nagios, done by op5.</li>
<li>Andriy Skuratov, talked about and demonstrated a new version of Nagvis with integrated Google Maps and other good stuff.</li>
<li>Ethan Galstad the founder of Nagios announced Ninja as the new GUI for Nagios.</li>
</ul>
<p>During the Nordic meet on Nagios I meet alot of interesting people, learned alot and had good food and drinks.</p>
<p>I hope to see you next year at Nordic Meet on Nagios 2010!!!</p>
<p><br class="spacer_" /></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F06%2F04%2Fnordic-meet-on-nagios-is-over%2F&amp;title=Nordic%20meet%20on%20Nagios%20is%20over." id="wpa2a_40"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/06/04/nordic-meet-on-nagios-is-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merlin &#8211; Module for Endless Redundancy and Loadbalancing In Nagios</title>
		<link>http://www.it-slav.net/blogs/2009/05/15/merlin-module-for-endless-redundancy-and-loadbalancing-in-nagios/</link>
		<comments>http://www.it-slav.net/blogs/2009/05/15/merlin-module-for-endless-redundancy-and-loadbalancing-in-nagios/#comments</comments>
		<pubDate>Fri, 15 May 2009 14:10:54 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Cool things]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1090</guid>
		<description><![CDATA[The Merlin project was initially started to create an easy way to set up distributed Nagios installations allowing Nagios processes to exchange information directly as an alternative to the standard nagios way using NSCA. When starting the Ninja project we realised that we could continue the work on Merlin and adopt the project to function [...]]]></description>
			<content:encoded><![CDATA[<p>The Merlin project was initially started to create an easy way to set up distributed Nagios installations allowing Nagios processes to exchange information directly as an alternative to the <a href="http://nagios.sourceforge.net/docs/3_0/distributed.html">standard nagios way</a> using NSCA. When starting the <a href="http://www.op5.org/community/projects/ninja">Ninja</a> project we realised that we could continue the work on Merlin and adopt the project to function as backend for Ninja by adding support for storing the status information in a database, fault tolearance and some other cool things. This means that Merlin now are responsible for providing status data, acting as a backend, for the Ninja GUI.</p>
<p>Read more at <a href="http://www.op5.org/community/projects/merlin" target="_blank">http://www.op5.org/community/projects/merlin</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F05%2F15%2Fmerlin-module-for-endless-redundancy-and-loadbalancing-in-nagios%2F&amp;title=Merlin%20%26%238211%3B%20Module%20for%20Endless%20Redundancy%20and%20Loadbalancing%20In%20Nagios" id="wpa2a_42"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/05/15/merlin-module-for-endless-redundancy-and-loadbalancing-in-nagios/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>op5 Monitor tutorial part 2</title>
		<link>http://www.it-slav.net/blogs/2009/04/30/op5-monitor-tutorial-part-2/</link>
		<comments>http://www.it-slav.net/blogs/2009/04/30/op5-monitor-tutorial-part-2/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 07:29:10 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=997</guid>
		<description><![CDATA[Demo of how the Nagios based network monitoring tool op5 Monitor works and how easy it is to use. This part contains demo of the reports module and how to make SLA reports.]]></description>
			<content:encoded><![CDATA[<p><span class="description">Demo of how the Nagios based network monitoring tool <a href="http://www.op5.com/op5/products/monitor" target="_blank">op5 Monitor</a> works and how easy it is to use.  This part contains demo of the reports module and how to make SLA reports. </span></p>
<p><span class="description"><br />
 </span></p>
<p>
<object width="425" height="344" data="http://www.youtube.com/v/lFj8u8WUmc8&amp;hl=sv&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/lFj8u8WUmc8&amp;hl=sv&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F04%2F30%2Fop5-monitor-tutorial-part-2%2F&amp;title=op5%20Monitor%20tutorial%20part%202" id="wpa2a_44"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/04/30/op5-monitor-tutorial-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>op5 Monitor tutorial part 1</title>
		<link>http://www.it-slav.net/blogs/2009/04/23/op5-monitor-tutorial-part-1/</link>
		<comments>http://www.it-slav.net/blogs/2009/04/23/op5-monitor-tutorial-part-1/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 07:37:01 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Nagios]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=991</guid>
		<description><![CDATA[A demo of the benefits with op5 Monitor and what you can monitor with this Nagios based network monitoring tool. This first part gives a short introduction and overview of the tool.]]></description>
			<content:encoded><![CDATA[<p>A demo of the benefits with <a href="http://www.op5.com/op5/products/monitor" target="_blank">op5 Monitor</a> and what you can monitor with this Nagios based network monitoring tool. This first part gives a short introduction and overview of the tool.</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>
<object width="425" height="344" data="http://www.youtube.com/v/MjvcGQsmRMU&amp;hl=sv&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/MjvcGQsmRMU&amp;hl=sv&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F04%2F23%2Fop5-monitor-tutorial-part-1%2F&amp;title=op5%20Monitor%20tutorial%20part%201" id="wpa2a_46"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/04/23/op5-monitor-tutorial-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teledemo: op5 Products presented by Collax</title>
		<link>http://www.it-slav.net/blogs/2009/04/21/teledemo-op5-products-presented-by-collax/</link>
		<comments>http://www.it-slav.net/blogs/2009/04/21/teledemo-op5-products-presented-by-collax/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 12:05:18 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[op5]]></category>
		<category><![CDATA[op5 Logserver]]></category>
		<category><![CDATA[op5 Monitor]]></category>
		<category><![CDATA[op5 Statistics]]></category>
		<category><![CDATA[Collax]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=982</guid>
		<description><![CDATA[I will be running a demo of op5 products at thursday April 23:th 16:00 CET. The demo is hosted by Collax a op5 partner in Germany. If you want to attend, register at: http://www.collax.com/de/ueber-collax/events-collax-live/webcast-collax-monitoring-solution.html]]></description>
			<content:encoded><![CDATA[<p>I will be running a demo of op5 products at thursday April 23:th 16:00 CET.</p>
<p>The demo is hosted by <a href="http://www.collax.com">Collax</a> a op5 partner in Germany.</p>
<p><br class="spacer_" /></p>
<p>If you want to attend, register at:</p>
<p><a href="http://www.collax.com/de/ueber-collax/events-collax-live/webcast-collax-monitoring-solution.html" target="_blank">http://www.collax.com/de/ueber-collax/events-collax-live/webcast-collax-monitoring-solution.html</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.it-slav.net%2Fblogs%2F2009%2F04%2F21%2Fteledemo-op5-products-presented-by-collax%2F&amp;title=Teledemo%3A%20op5%20Products%20presented%20by%20Collax" id="wpa2a_48"><img src="http://www.it-slav.net/blogs/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/04/21/teledemo-op5-products-presented-by-collax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

