<?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>Martin&#039;s Blog &#187; NSM</title>
	<atom:link href="http://martinliu.cn/category/nsm/feed" rel="self" type="application/rss+xml" />
	<link>http://martinliu.cn</link>
	<description>如何以服务的视角管理IT？</description>
	<lastBuildDate>Sun, 13 May 2012 16:36:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Fiddler Timers</title>
		<link>http://martinliu.cn/2010/12/fiddler-timers.html</link>
		<comments>http://martinliu.cn/2010/12/fiddler-timers.html#comments</comments>
		<pubDate>Wed, 22 Dec 2010 07:28:45 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[NSM]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[fiddler]]></category>

		<guid isPermaLink="false">http://martinliu.cn/?p=50848</guid>
		<description><![CDATA[Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and &#8220;fiddle&#8221; with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.Fiddler is freeware and can debug traffic<p><a href="http://martinliu.cn/2010/12/fiddler-timers.html" class="more-link">Continue reading &#187;</a></p>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.fiddler2.com/Fiddler/images/FiddlerLogo.png" alt="Fiddler" />Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and &#8220;fiddle&#8221; with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.Fiddler is freeware and can debug traffic from virtually any application, including Internet Explorer, Mozilla Firefox, Opera, and thousands more. </p>
<div id="page-content">
<ul>
<li><strong>ClientConnected</strong>- Exact time that the client browser made a TCP/IP connection to Fiddler.</li>
<li><strong>ClientBeginRequest</strong>– Time at which this HTTP request began. May be much later than ClientConnected due to client connection reuse.</li>
<li><strong>ClientDoneRequest</strong> &#8211; Exact time that the client browser finished sending the HTTP request to Fiddler.</li>
<li><strong>DNSTime</strong> &#8211; # milliseconds Fiddler spent in DNS looking up the server&#8217;s IP address.</li>
<li><strong>GatewayDeterminationTime</strong> &#8211; # milliseconds Fiddler  spent determining the upstream gateway proxy to use (e.g. processing  autoproxy script). Mutually exclusive to DNSTime.</li>
<li><strong>TCPConnectTime</strong> &#8211; # milliseconds Fiddler spent TCP/IP connecting to that server&#8217;s IP address.</li>
<li><strong>HTTPSHandshakeTime</strong> – Amount of time spent in HTTPS handshake</li>
<li><strong>ServerConnected</strong> – Time at which this connection to  the server was made. May be much earlier than ClientConnected due to  server connection reuse.</li>
<li><strong>FiddlerBeginRequest</strong> – The time at which Fiddler began sending the HTTP request to the server.</li>
<li><strong>ServerGotRequest</strong> &#8211; Exact time that Fiddler finished (re)sending the HTTP request to the server.</li>
<li><strong>ServerBeginResponse</strong> &#8211; Exact time that Fiddler got the first bytes of the server&#8217;s HTTP response.</li>
<li><strong>ServerDoneResponse</strong> &#8211; Exact time that Fiddler got the last bytes of the server&#8217;s HTTP response.</li>
<li><strong>ClientBeginResponse</strong> &#8211; Exact time that Fiddler began transmitting the HTTP response to the client browser.</li>
<li><strong>ClientDoneResponse</strong>- Exact time that Fiddler finished transmitting the HTTP response to the client browser.</li>
</ul>
<p><strong>Can i find out how long the server needs to process my request ?</strong><br />
(ServerBeginResponse &#8211; ServerGotRequest) is probably what you want.</p>
<p><strong>Can i find out how long the request needs to pass through the network?</strong><br />
I&#8217;m not sure that&#8217;s what you really want to know, but it would be:</p>
<p>(ServerGotRequest &#8211; ClientDoneRequest) &#8211; (DNSTime + TCPConnectTime)</p>
</div>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2010/12/fiddler-timers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Cacti more easier</title>
		<link>http://martinliu.cn/2010/07/cacti-easier.html</link>
		<comments>http://martinliu.cn/2010/07/cacti-easier.html#comments</comments>
		<pubDate>Fri, 23 Jul 2010 01:46:33 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[NSM]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[cactiez]]></category>
		<category><![CDATA[snmp]]></category>

		<guid isPermaLink="false">http://martinliu.cn/?p=50729</guid>
		<description><![CDATA[Cacti是我最喜爱的一个网管软件之一。网站http://cactiez.cactiusers.org/ ；该网站的主人吧Cacti嵌入到了Linux的安装光盘中，实现了Cacti的一键式安装，这正是我所关注的关于开源应用的重要的一个步骤。我称之这是在解决开源软件应用的“last mile”问题。开源软件的潜在用户往往有这样几个特点： 技术力量弱，有些可能根本就不知道什么是Linux，什么是open source 需求相对明确和简单 无法获得中文的技术支持和培训 CactiEz让人能在30分钟之内上手开始使用Cacti，从根本上解决了整套软件的安装和配置工作。 英文版下载地址：http://cactiez.cactiusers.org/ 中文版下载地址：http://linux.chinaunix.net/bbs/thread-1049886-1-1.html Related posts: ISO open source software How to install Cacti on OpenSuse 10.2 Some old stuff for sharing
Related posts:<ol>
<li><a href='http://martinliu.cn/2008/05/iso-open-source-software.html' rel='bookmark' title='ISO open source software'>ISO open source software</a></li>
<li><a href='http://martinliu.cn/2007/06/how-to-install-cacti-on-opensuse-102.html' rel='bookmark' title='How to install Cacti on OpenSuse 10.2'>How to install Cacti on OpenSuse 10.2</a></li>
<li><a href='http://martinliu.cn/2008/10/some-old-stuff-for-sharing.html' rel='bookmark' title='Some old stuff for sharing'>Some old stuff for sharing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="cacti" src="http://www.cacti.net/images/cacti.png" alt="" width="100" height="149" />Cacti是我最喜爱的一个网管软件之一。网站<a href="http://cactiez.cactiusers.org/" target="_blank">http://cactiez.cactiusers.org/</a> ；该网站的主人吧Cacti嵌入到了Linux的安装光盘中，实现了Cacti的一键式安装，这正是我所关注的关于开源应用的重要的一个步骤。我称之这是在解决开源软件应用的“last mile”问题。开源软件的潜在用户往往有这样几个特点：</p>
<ul>
<li>技术力量弱，有些可能根本就不知道什么是Linux，什么是open source</li>
<li>需求相对明确和简单</li>
<li>无法获得中文的技术支持和培训</li>
</ul>
<p>CactiEz让人能在30分钟之内上手开始使用Cacti，从根本上解决了整套软件的安装和配置工作。</p>
<p>英文版下载地址：<a href="http://cactiez.cactiusers.org/" target="_blank">http://cactiez.cactiusers.org/</a></p>
<p>中文版下载地址：<a href="http://linux.chinaunix.net/bbs/thread-1049886-1-1.html" target="_blank">http://linux.chinaunix.net/bbs/thread-1049886-1-1.html</a></p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2008/05/iso-open-source-software.html' rel='bookmark' title='ISO open source software'>ISO open source software</a></li>
<li><a href='http://martinliu.cn/2007/06/how-to-install-cacti-on-opensuse-102.html' rel='bookmark' title='How to install Cacti on OpenSuse 10.2'>How to install Cacti on OpenSuse 10.2</a></li>
<li><a href='http://martinliu.cn/2008/10/some-old-stuff-for-sharing.html' rel='bookmark' title='Some old stuff for sharing'>Some old stuff for sharing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2010/07/cacti-easier.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenNMS 1.6.1 to 1.6.10</title>
		<link>http://martinliu.cn/2010/03/opennms-161-1610.html</link>
		<comments>http://martinliu.cn/2010/03/opennms-161-1610.html#comments</comments>
		<pubDate>Sun, 28 Mar 2010 05:37:04 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[OpenNMS]]></category>
		<category><![CDATA[cmdb]]></category>
		<category><![CDATA[ITIL]]></category>
		<category><![CDATA[ITSM]]></category>
		<category><![CDATA[snmp]]></category>

		<guid isPermaLink="false">http://martinliu.cn/?p=50509</guid>
		<description><![CDATA[在最近的一年里，我基本上忙于CMDB的工作，没有什么业余时间来看看OpenNMS的情况。其实OpenNMS是最初引入我深入了解开源软件世界的东东。时隔1年之久，我上一篇关于opennms的文章是它是1.6.1版本，刚才查了一下，它最新的稳定版本是1.6.10. 看似它这一年里发展的比较慢，这让我感到些许地失望，大概地看一下一堆相关的release notes。功能性的变化如下： 新增和增强了一些monitor的和功能，主要有http，dns，ldap，ssh，jmx等，从最初的snmp采集，都这些采集功能；采集能力的增强是它这样的无代理监控程序永远的话题 UI的功能的增强了一些 SNMP采集仍然是他的主要能力，在这方面也有了一些改进 新增了一些网络设备品牌的支持 阀值配置也有改进 总的来说，作为一款能够采集各种snmp mib信息，能够出好看的性能报表，能够作为统一的告警事件平台，能够有简单易用的UI，OpenNMS做的显然是非常不错的。至今还行它还没有提出什么云计算相关的话题，可见他们还是一般比较稳健发展，不爱赶时髦的人。希望他们能做的更好。 对于我的这个blog来说，之前写的OpenNMS和网管相关的东西比较多，以后可能会越来越少，就此和OpenNMS做一个总结。以后本blog可能会和目前做的cmdb和itsm相关这些内容为主了。 Related posts: OpenNMS 安装说明－精简版 翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变” zenoss opennms comparison/比较
Related posts:<ol>
<li><a href='http://martinliu.cn/2007/04/opennms-install-sample.html' rel='bookmark' title='OpenNMS 安装说明－精简版'>OpenNMS 安装说明－精简版</a></li>
<li><a href='http://martinliu.cn/2007/02/opennms-discuss-nagios.html' rel='bookmark' title='翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”'>翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”</a></li>
<li><a href='http://martinliu.cn/2008/05/zenoss-opennms-comparison.html' rel='bookmark' title='zenoss opennms comparison/比较'>zenoss opennms comparison/比较</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://martinliu.cn/wp-content/gallery/flickr/IMG_7736.JPG" title="" class="shutterset_singlepic35" >
	<img class="ngg-singlepic ngg-left" src="http://martinliu.cn/wp-content/gallery/cache/35__320x240_IMG_7736.JPG" alt="IMG_7736" title="IMG_7736" />
</a>
在最近的一年里，我基本上忙于CMDB的工作，没有什么业余时间来看看OpenNMS的情况。其实OpenNMS是最初引入我深入了解开源软件世界的东东。时隔1年之久，我上一篇关于opennms的文章是它是1.6.1版本，刚才查了一下，它最新的稳定版本是1.6.10.</p>
<p>看似它这一年里发展的比较慢，这让我感到些许地失望，大概地看一下一堆相关的release notes。功能性的变化如下：</p>
<ul>
<li>新增和增强了一些monitor的和功能，主要有http，dns，ldap，ssh，jmx等，从最初的snmp采集，都这些采集功能；采集能力的增强是它这样的无代理监控程序永远的话题</li>
<li>UI的功能的增强了一些</li>
<li>SNMP采集仍然是他的主要能力，在这方面也有了一些改进</li>
<li>新增了一些网络设备品牌的支持</li>
<li>阀值配置也有改进</li>
</ul>
<p>总的来说，作为一款能够采集各种snmp mib信息，能够出好看的性能报表，能够作为统一的告警事件平台，能够有简单易用的UI，OpenNMS做的显然是非常不错的。至今还行它还没有提出什么云计算相关的话题，可见他们还是一般比较稳健发展，不爱赶时髦的人。希望他们能做的更好。</p>
<p>对于我的这个blog来说，之前写的OpenNMS和网管相关的东西比较多，以后可能会越来越少，就此和OpenNMS做一个总结。以后本blog可能会和目前做的cmdb和itsm相关这些内容为主了。</p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2007/04/opennms-install-sample.html' rel='bookmark' title='OpenNMS 安装说明－精简版'>OpenNMS 安装说明－精简版</a></li>
<li><a href='http://martinliu.cn/2007/02/opennms-discuss-nagios.html' rel='bookmark' title='翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”'>翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”</a></li>
<li><a href='http://martinliu.cn/2008/05/zenoss-opennms-comparison.html' rel='bookmark' title='zenoss opennms comparison/比较'>zenoss opennms comparison/比较</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2010/03/opennms-161-1610.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some useful tools</title>
		<link>http://martinliu.cn/2009/07/some-useful-tools.html</link>
		<comments>http://martinliu.cn/2009/07/some-useful-tools.html#comments</comments>
		<pubDate>Sat, 04 Jul 2009 05:41:06 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[NSM]]></category>
		<category><![CDATA[snmp]]></category>

		<guid isPermaLink="false">http://martinliu.byteact.com/2009/07/04/some-useful-tools/</guid>
		<description><![CDATA[I am just cleaning up my bookmarks. Some of them could not be deleted. I&#8217;d like to list here. This is a netflow monitor tool, you can capture, graph and store data. Founded in 1992, the Distributed Management Task Force, Inc. (DMTF) is the industry organization leading the development of management standards and integration technology<p><a href="http://martinliu.cn/2009/07/some-useful-tools.html" class="more-link">Continue reading &#187;</a></p>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I am just cleaning up my bookmarks. Some of them could not be deleted. I&#8217;d like to list here.</p>
<p><a href="http://ensight.eos.nasa.gov/FlowViewer/FlowViewer.png"><img style="margin: 0pt 10px 10px 0pt;float: left;width: 275px;height: 86px" src="http://ensight.eos.nasa.gov/FlowViewer/FlowViewer.png" alt="" border="0" /></a>This is a netflow monitor tool, you can capture, graph and store data.</p>
<p><a href="http://www.dmtf.org/images/headermain/logo_dmtf.gif"><img style="margin: 0pt 10px 10px 0pt;float: left;width: 128px;height: 43px" src="http://www.dmtf.org/images/headermain/logo_dmtf.gif" alt="" border="0" /></a>Founded in 1992, the Distributed Management Task Force, Inc. (DMTF) is the   industry organization leading the development of management standards and   integration technology for enterprise and Internet environments.</p>
<p><a href="http://www.concursive.com/image/2008051215-10-7589-45x45/badge-concursivegroup.png"><img style="margin: 0pt 10px 10px 0pt;float: left;width: 45px;height: 45px" src="http://www.concursive.com/image/2008051215-10-7589-45x45/badge-concursivegroup.png" alt="" border="0" /></a>Social Networking Meets Business, Concursive have CRM, online communitie, collaboration tools.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2009/07/some-useful-tools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[網播] Born to MISrepresent 第二集：當 OpenNMS 遇上 SFLC ，催生了 Moglen Ravicher LLC</title>
		<link>http://martinliu.cn/2009/02/%e7%b6%b2%e6%92%ad-born-to-misrepresent-%e7%ac%ac%e4%ba%8c%e9%9b%86%ef%bc%9a%e7%95%b6-opennms-%e9%81%87%e4%b8%8a-sflc-%ef%bc%8c%e5%82%ac%e7%94%9f%e4%ba%86-moglen-ravicher-llc.html</link>
		<comments>http://martinliu.cn/2009/02/%e7%b6%b2%e6%92%ad-born-to-misrepresent-%e7%ac%ac%e4%ba%8c%e9%9b%86%ef%bc%9a%e7%95%b6-opennms-%e9%81%87%e4%b8%8a-sflc-%ef%bc%8c%e5%82%ac%e7%94%9f%e4%ba%86-moglen-ravicher-llc.html#comments</comments>
		<pubDate>Wed, 04 Feb 2009 04:52:02 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[OpenNMS]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Moglen Ravicher LLC]]></category>
		<category><![CDATA[SFLC]]></category>

		<guid isPermaLink="false">http://www.martinliu.cn/?p=422</guid>
		<description><![CDATA[（原文於 2008-04-08 發表於 http://blog.roodo.com/ystuan/archives/5830995.html） 這個音檔的授權是姓名標示-非商業性-相同方式分享 2.5 台灣，跟我的網誌一樣。 下載ogg格式：Born_to_MISrepresent_EP2.ogg 下載mp3格式：Born_to_MISrepresent_EP2.mp3 前往存放在 Archive.org 上的頁面：Born to MISrepresent EP2，有更多資訊以及格式。 內容摘要： OpenNMS 1.3.11 版發佈，並宣佈與 Hyperic 就雙方的產品進行合作。這項合作的推手是一個雙方的共同客戶。Hyperic 的 agent 預料將可和擁有強大平台但是拙於 agent (agent-less)的 OpenNMS 形成良好互補。（自 1.3.10 版就開始跟 Hyperic Agent進行整合，最近 OpenNMS 版本號已跳升至 1.5.90 ） Tarus 的 blog 有更多細節：The Year of Integration Hyperic 跟 OpenNMS 的初步整合，可線上收看 Integrating Hyperic HQ and OpenNMS（瀏覽器需支援 flash 格式播放） 當<p><a href="http://martinliu.cn/2009/02/%e7%b6%b2%e6%92%ad-born-to-misrepresent-%e7%ac%ac%e4%ba%8c%e9%9b%86%ef%bc%9a%e7%95%b6-opennms-%e9%81%87%e4%b8%8a-sflc-%ef%bc%8c%e5%82%ac%e7%94%9f%e4%ba%86-moglen-ravicher-llc.html" class="more-link">Continue reading &#187;</a></p>
Related posts:<ol>
<li><a href='http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html' rel='bookmark' title='opennms 1.6.1-1 quick start guide'>opennms 1.6.1-1 quick start guide</a></li>
<li><a href='http://martinliu.cn/2007/02/opennms-discuss-nagios.html' rel='bookmark' title='翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”'>翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”</a></li>
<li><a href='http://martinliu.cn/2007/05/install-opennms-132-on-opensuse-102-system-the-simplest-version.html' rel='bookmark' title='Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )'>Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>（原文於 2008-04-08 發表於 <a href="http://blog.roodo.com/ystuan/archives/5830995.html">http://blog.roodo.com/ystuan/archives/5830995.html</a>）</p>
<p>這個音檔的授權是<a href="http://creativecommons.org/licenses/by-nc-sa/2.5/tw/">姓名標示-非商業性-相同方式分享 2.5 台灣</a>，跟我的網誌一樣。</p>
<p>下載ogg格式：<a href="http://www.archive.org/download/BornToMisrepresentEp2/Born_to_MISrepresent_EP2.ogg">Born_to_MISrepresent_EP2.ogg</a><br />
下載mp3格式：<a href="http://www.archive.org/download/BornToMisrepresentEp2/Born_to_MISrepresent_EP2.mp3">Born_to_MISrepresent_EP2.mp3</a><br />
前往存放在 Archive.org 上的頁面：<a href="http://www.archive.org/details/BornToMisrepresentEp2">Born to MISrepresent EP2</a>，有更多資訊以及格式。</p>
<p>內容摘要：</p>
<p>OpenNMS 1.3.11 版發佈，並宣佈與 Hyperic 就雙方的產品進行合作。這項合作的推手是一個雙方的共同客戶。Hyperic 的 agent 預料將可和擁有強大平台但是拙於 agent (agent-less)的 OpenNMS 形成良好互補。（自 1.3.10 版就開始跟 Hyperic Agent進行整合，最近 OpenNMS 版本號已跳升至 1.5.90 ） Tarus 的 blog 有更多細節：<a href="http://blogs.opennms.org/?p=175">The Year of Integration</a></p>
<p>Hyperic 跟 OpenNMS 的初步整合，可線上收看 <a href="http://download.hyperic.com/swf/HyperCAST10/playback.html">Integrating Hyperic HQ and OpenNMS</a>（瀏覽器需支援 flash 格式播放）</p>
<p>當 OpenNMS 遇上 SFLC ：前一陣子 Tarus 跑去 <a href="http://ask.slashdot.org/article.pl?sid=08/03/04/0023245">Ask Slashdot</a> ，嚷嚷說 <a href="http://www.cittio.com/">Cittio Watchtower</a> 使用 OpenNMS 的程式碼當然可以，但是使用的方式違反了（程式碼採用的）GPL授權。</p>
<p>想也知道，跑去 Slashdot 一定會引來關注，他也尋求軟體自由法律中心（Software Freedom Law Center，SFLC）的協助。但是，SFLC服務對象僅限於非營利機構，結果呢，SFLC決定以成立一間新的律師事務所(<a href="http://www.moglenravicher.com/">Moglen Ravicher LLC</a>)的方式，來服務支持自由軟體的營利機構， OpenNMS Group 因此成了 Moglen Ravicher LLC 的第一個客戶。</p>
<p>喔，不用猜， SFLC 的<a href="http://www.softwarefreedom.org/news/2008/mar/26/moglen-ravicher/">新聞稿</a>直接告訴大家，兩塊招牌底下都是同一群律師，事務所的所有利潤會回饋給 SFLC 。（嗯，其實我們也可以說 OpenNMS 有兩種，一種是 opennms.org &#8211; 社群，一種則是 opennms.com &#8211; 主要參與者所開的公司 OpenNMS Group。）</p>
<p>筆者已經在 FLOSS Weekly 聽過 <a href="http://twit.tv/floss13">Eben Moglen 談 GPL 3.0</a> ，這次為多瞭解另一位大咖 Dan Ravicher （其實只是想搞清楚他的姓怎麼唸&#8230;&#8230;），找到了 Dan 談 <a href="http://www.ip.qut.edu.au/2006-08-innovation-ravicher">GPL 3, Patents and Other Current Issues</a> ，都很棒，推薦給大家，尤其是後者，其實 Dan 還回顧了 GPL 的誕生，解釋了 RHEL 的 subscription model 為何不違反 GPL 但又可以約束客戶（超意外收穫！解答了筆者幾百年前的疑惑）</p>
<p>照例 Tarus 也在他的 blog 提到整件事：<a title="Permanent Link: OpenNMS, Eben Moglen and Cittio" rel="bookmark" href="http://blogs.opennms.org/?p=181">OpenNMS, Eben Moglen and Cittio</a></p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html' rel='bookmark' title='opennms 1.6.1-1 quick start guide'>opennms 1.6.1-1 quick start guide</a></li>
<li><a href='http://martinliu.cn/2007/02/opennms-discuss-nagios.html' rel='bookmark' title='翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”'>翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”</a></li>
<li><a href='http://martinliu.cn/2007/05/install-opennms-132-on-opensuse-102-system-the-simplest-version.html' rel='bookmark' title='Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )'>Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2009/02/%e7%b6%b2%e6%92%ad-born-to-misrepresent-%e7%ac%ac%e4%ba%8c%e9%9b%86%ef%bc%9a%e7%95%b6-opennms-%e9%81%87%e4%b8%8a-sflc-%ef%bc%8c%e5%82%ac%e7%94%9f%e4%ba%86-moglen-ravicher-llc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.archive.org/download/BornToMisrepresentEp2/Born_to_MISrepresent_EP2.mp3" length="20747203" type="audio/mpeg" />
		</item>
		<item>
		<title>opennms 1.6.1-1 quick start guide</title>
		<link>http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html</link>
		<comments>http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html#comments</comments>
		<pubDate>Sun, 11 Jan 2009 02:33:12 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[OpenNMS]]></category>
		<category><![CDATA[Yum]]></category>

		<guid isPermaLink="false">http://www.martinliu.cn/?p=371</guid>
		<description><![CDATA[本安装手册为纯命令版，如果有什么疑问清参考官方安装手册，或给本贴留言。 [install yum on your Linux box] 选择任意Linux系统，安装上yum工具，在命令行测试 yum -v [testing internet connection with those two URL] 测试是否能上网，用浏览器分别打开这两个网址 http://www.martinliu.cn/2007/12/13/opennms-yum-install/ http://yum.opennms.org/repofiles/ 先别关闭这两个网页。 [Install opennms 开始安装: yum install yum-fastestmirror rpm -Uvh http://yum.opennms.org/repofiles/opennms-repo-snapshot-rhel4.noarch.rpm yum list opennms yum install opennms [ post-install and config] 开始配置： export OPENNMS_HOME=/opt/opennms vi /var/lib/pgsql/data/pg_hba.conf 注释掉其中所有可用的行，加入下面三行 local all all trust host all all 127.0.0.1/32 trust<p><a href="http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html" class="more-link">Continue reading &#187;</a></p>
Related posts:<ol>
<li><a href='http://martinliu.cn/2007/04/opennms-install-sample.html' rel='bookmark' title='OpenNMS 安装说明－精简版'>OpenNMS 安装说明－精简版</a></li>
<li><a href='http://martinliu.cn/2007/05/install-opennms-132-on-opensuse-102-system-the-simplest-version.html' rel='bookmark' title='Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )'>Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )</a></li>
<li><a href='http://martinliu.cn/2007/12/opennms-yum-install.html' rel='bookmark' title='OpenNMS的Yum的安装方式，安装简单了很多'>OpenNMS的Yum的安装方式，安装简单了很多</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.etproductions.com/images/start.jpg" alt="" align="right" /></p>
<p>本安装手册为纯命令版，如果有什么疑问清参考官方安装手册，或给本贴留言。</p>
<p>[install yum on your Linux box]<br />
选择任意Linux系统，安装上yum工具，在命令行测试 yum -v</p>
<p>[testing internet connection with those two URL]<br />
测试是否能上网，用浏览器分别打开这两个网址</p>
<ol>
<li><a href="http://www.martinliu.cn/2007/12/13/opennms-yum-install/" target="_blank">http://www.martinliu.cn/2007/12/13/opennms-yum-install/</a></li>
<li><a href="http://http://yum.opennms.org/repofiles/" target="_blank">http://yum.opennms.org/repofiles/</a></li>
</ol>
<p>先别关闭这两个网页。</p>
<p>[Install opennms   开始安装:</p>
<ol>
<li> yum install yum-fastestmirror</li>
<li>rpm -Uvh http://yum.opennms.org/repofiles/opennms-repo-snapshot-rhel4.noarch.rpm</li>
<li>yum list opennms</li>
<li>yum install opennms</li>
</ol>
<p>[ post-install and config]  开始配置：</p>
<ol>
<li>export OPENNMS_HOME=/opt/opennms</li>
<li> vi /var/lib/pgsql/data/pg_hba.conf
<ol>
<li>注释掉其中所有可用的行，加入下面三行<br />
local   all     all     trust<br />
host    all     all     127.0.0.1/32 trust<br />
host    all     all     ::1/128 trust</li>
</ol>
</li>
<li>/sbin/service postgresql restart</li>
<li>/usr/java/jdk1.5.0_15/bin/java -version</li>
<li>$OPENNMS_HOME/bin/runjava -S  /usr/java/jdk1.5.0_15/bin/java</li>
<li>$OPENNMS_HOME/bin/install      -disU -l /usr/lib/jni:/usr/lib</li>
</ol>
<p>[ startup opennms and login ]启动登录：</p>
<ol>
<li>/etc/init.d/opennms start</li>
<li>http://localhost:8980/opennms</li>
<li>username and password are admin/admin</li>
<li>click Admin  / Add Interface, input a ipaddress and press Add button</li>
</ol>
<p>OK， I have get oepnnms 1.6.1-1 installed on my home pc, I hope you good luck and have fun.</p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2007/04/opennms-install-sample.html' rel='bookmark' title='OpenNMS 安装说明－精简版'>OpenNMS 安装说明－精简版</a></li>
<li><a href='http://martinliu.cn/2007/05/install-opennms-132-on-opensuse-102-system-the-simplest-version.html' rel='bookmark' title='Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )'>Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )</a></li>
<li><a href='http://martinliu.cn/2007/12/opennms-yum-install.html' rel='bookmark' title='OpenNMS的Yum的安装方式，安装简单了很多'>OpenNMS的Yum的安装方式，安装简单了很多</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[发布说明] OpenNMS 1.6.0 (Stable) Released</title>
		<link>http://martinliu.cn/2008/11/%e5%8f%91%e5%b8%83%e8%af%b4%e6%98%8e-opennms-160-stable-released.html</link>
		<comments>http://martinliu.cn/2008/11/%e5%8f%91%e5%b8%83%e8%af%b4%e6%98%8e-opennms-160-stable-released.html#comments</comments>
		<pubDate>Fri, 14 Nov 2008 14:57:36 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[OpenNMS]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[netcool]]></category>
		<category><![CDATA[openview]]></category>
		<category><![CDATA[OTRS]]></category>

		<guid isPermaLink="false">http://www.martinliu.cn/?p=307</guid>
		<description><![CDATA[OpenNMS 1.6.0 (Stable) Released 似乎每年的10月以后我就会进入一个超级繁忙的状态，很长时间没有更新blog了，今天姑且转载一个OpenNMS的发布说明吧。 OpenNMS, the world&#8217;s first enterprise-grade network management platform developed as 100% free and open software, has released version 1.6.0. This is a stable, production release that incorporates nearly three years of development. 以上算是OpenNMS的广告语大家看看就是，需要注意的是一个企业级的产品实施费用是从很低的门槛一直到企业级的花费的。和其他的企业级解决方案的实施没有区别，差异在于，一个不同的许可证类型，此为开源许可证是也。 The last production version, 1.2.0, was aimed to compete squarely with Hewlett-Packard&#8217;s OpenView Network Node Manager product.<p><a href="http://martinliu.cn/2008/11/%e5%8f%91%e5%b8%83%e8%af%b4%e6%98%8e-opennms-160-stable-released.html" class="more-link">Continue reading &#187;</a></p>
Related posts:<ol>
<li><a href='http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html' rel='bookmark' title='opennms 1.6.1-1 quick start guide'>opennms 1.6.1-1 quick start guide</a></li>
<li><a href='http://martinliu.cn/2007/05/install-opennms-132-on-opensuse-102-system-the-simplest-version.html' rel='bookmark' title='Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )'>Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )</a></li>
<li><a href='http://martinliu.cn/2007/02/opennms-discuss-nagios.html' rel='bookmark' title='翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”'>翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.opennms.org/images/b/b5/Banner.jpg" alt="" width="660" height="160" /></p>
<p><a href="http://sourceforge.net/forum/forum.php?forum_id=882433">OpenNMS 1.6.0 (Stable) Released</a></p>
<p>似乎每年的10月以后我就会进入一个超级繁忙的状态，很长时间没有更新blog了，今天姑且转载一个OpenNMS的发布说明吧。</p>
<p>OpenNMS, the world&#8217;s first enterprise-grade network management platform developed as 100% free and open software, has released version 1.6.0. This is a stable, production release that incorporates nearly three years of development.</p>
<p>以上算是OpenNMS的广告语大家看看就是，需要注意的是一个企业级的产品实施费用是从很低的门槛一直到企业级的花费的。和其他的企业级解决方案的实施没有区别，差异在于，一个不同的许可证类型，此为开源许可证是也。</p>
<p><span id="more-49240"></span></p>
<p>The last production version, 1.2.0, was aimed to compete squarely with Hewlett-Packard&#8217;s OpenView Network Node Manager product. This release builds upon that work to expand the reach of OpenNMS to other parts of the OpenView family as well as to provide an open source alternative to products such as Tivoli&#8217;s Netcool.</p>
<p>以上是OpenNMS的精神所在：OpenNMS一直在叫嚣这和OpenView, NetCool较量；这足以说明了它的勇气，和发展方向，它的创始人Tarus从一个人单枪匹马开始，到现在有一般人inhouse开发这个产品，自己全世界出差，如果说没有实现和商业产品的抗衡的话，我个人觉得他起码实现了一个所有开源参与者的梦想“为需要自己的人工作，为自己工作”</p>
<p>OpenNMS 1.6.0 sports a redesigned user interface, a number of scalability improvements and increased integration with other products. OpenNMS now runs on Windows, in addition to most flavors of Linux, Solaris and Mac OS X.</p>
<p>上面说的是新版的用户界面重新设计了，目前我还没有时间安装，回头装好了一定上图片，新版的稳定性得到提高并增加了和其他产品的集成。现在OpenNMS也能在Windows上运行了，在我看这是早晚的是，它是个纯Java的应用，移植不是什么难事，不过我不推荐在windows上完开源的产品，有点不伦不类的感觉，而且从原生态的Linux环境中才哪呢个够获取开源的全部优势。</p>
<p>One of the major additions to the platform is the Alarms subsystem. OpenNMS can receive events from a number of sources, such as SNMP traps, syslog, TL/1, and custom scripts. A key can be configured for each event that will allow it to be turned into an alarm. Thus if a device is generating multiple, identical events, their number will be reduced into just a single alarm. This greatly reduces the amount of event &#8220;noise&#8221; that operators see.</p>
<p>上面说告警子系统现在是增强了。OpenNMS能收到像是snmp trap，syslog， TL/1和自定义脚本发来的告警事件。某种键值能被设置，让一个事件能被出发成一个警报。报警事件经过了压制和降噪处理，较少了重复报的数量。</p>
<p>In addition, automated actions can be performed on alarms. For example, events that signal problem resolution, or &#8220;up&#8221; alarms, can be matched with &#8220;down&#8221; alarms to automatically clear them. Event workflow can be built into the system by using these automations to manage the alarm list, thus freeing up the operators to focus on the most important issues.</p>
<p>另外，对于一个警报来说，可以和一个自动化的动作配合，例如某些up事件能去清除对应的down事件。</p>
<p>While OpenNMS contains a robust automated discovery system, when managing tens of thousands of nodes it is often preferred to allow an external system to determine what OpenNMS is to monitor. Thus OpenNMS 1.6.0 contains a new &#8220;model importer&#8221; feature that allows node, interface and service information to be imported directly into the system using data in an XML format. One company uses this method to manage over 70,000 devices with a single instance of OpenNMS.</p>
<p>同时OpenNMS现在的自动发现系统非常强大哦，档管理一万个节点的时候，OpenNMS往往倾向于使用一个外部的系统来决定什么是需要OpenNMS监控的。在1.6中包括这样一个新功能‘模型导入’，他能把xml格式的节点和端口数据自己导入到OpenNMS系统中。曾经一个公司用这个方法管理这7万个节点，都在一套OpenNMS系统内，好家伙~~也就是说这个功能有了之后，你就可以不用一个节点的去发现了，往往有些机器发现的那会正好不在线，那就漏掉很多的机器了。<br />
Data collection saw many improvements as well. With the proper hardware, OpenNMS is able to collect over one million data points every five minutes. This data can be from SNMP (versions 1, 2c and 3), JMX, HTTP, or NSClient. The collected data can be exported via the web user interface. Reports showing the highest and lowest values for a particular set of data points (Top N Reports) can also be created, and 1.6.0 contains a vastly improved thresholding system. Thresholds can be generated on individual data points, combinations of data points, as well as a &#8220;relative change&#8221; such as when a value shows a sudden increase or decrease.</p>
<p>数据的采集方面也有很多增强。利用一个合适的硬件，OpenNMS能够每5分钟把超过一百万的数据采集点采集一遍，要是采集稳定的话，这还是比较快的了。被采集的数据点可以使来自 snmp v1,2,3, JMX, http, nsclient。 采集来的数据能通过web界面到处了。这还是不错的功能，能有可能做一些系统之外的自定义报表了。自带的报表功能能够定制TopN的报表。OpenNMS现在的阀值管理系统也得到了增强。能为某一个数据点设置，也能为一组数据采集点，同时有了对 &#8220;relative change&#8221;的管理，也就是某个数据忽高忽低的管理，也即是某些瞬间的异常增的很高或降的很低。</p>
<p>OpenNMS was originally designed for network service monitoring, and that functionality has been increased as well. New monitors for such things as Windows services are now available, as well as more advanced synthetic transactions. The Page Sequence Monitor was created to monitor a complete web-based transaction, while the Mail Transport Monitor determines the full round-trip availability of a mail service.</p>
<p>OpenNMS天生是监控网络的。新增了很多monitor，例如windows服务监控，模拟交易监控。页面序列监控器用了监控一些列的web交易处理行为，还能通过Mail Transport Monitor 来确定邮件服务的可用性。</p>
<p>Probably the biggest change was the development of distributed monitoring. Using a small Java webstart application installed on a remote system, OpenNMS is able to monitor service availability from the point of view of the remote system. Combined with the Page Sequence Monitor one can measure the user&#8217;s experience when visiting a website from various remote locations.</p>
<p>最大的变更在这个版本中是‘分布式监控’，使用一个小的安装在远处的一个主机上的Java Webstat应用，opennms能过过这个监控服务点看到远程的系统上采集的数据。结合页面序列监控功能，它可以实现这样的功能：在南北方，网通电信的网络中找四个点安装这个程序后，模拟从不同网络位置监控某个web网站上一系列功能页面的可用性。这就是所谓的模拟交易管理，是Web应用管理方面中当下不可缺少的环节。</p>
<p>As OpenNMS was designed as a platform, there are numerous ways for external applications, both open and proprietary, to integrate with it. There is a new Trouble Ticketing API that allows for two-way communication between OpenNMS and a number of external ticketing systems such as Jira, Concursive (CentricCRM) and OTRS.<br />
像opennms这样的平台，可以提供给开源或者商业外部系统的接口。通过这些api的双向接口，你可以把报警事件送到外部的工单管理系统(事件管理流程平台)中，例如 Jira, Concursive (CentricCRM) and OTRS.、</p>
<p>These are just a few of the new features available in 1.6.0. As always, OpenNMS is 100% free and open software. Please check it out and let us know what you think. We hope you enjoy using it as much as we enjoy creating it.</p>
<p>嗯，终于读完了整篇的发布说明，你能相信，它都发布了这么久了，我只有在周五晚上抽空仔细读完么。这周简直是太忙，天天加班，还有天天处理不完的状况。今天的一个教训就是“软件系统之间的集成不是简单能搞定的，需要小心，小心在小心”</p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2009/01/161-1-opennms-quick-install-guide.html' rel='bookmark' title='opennms 1.6.1-1 quick start guide'>opennms 1.6.1-1 quick start guide</a></li>
<li><a href='http://martinliu.cn/2007/05/install-opennms-132-on-opensuse-102-system-the-simplest-version.html' rel='bookmark' title='Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )'>Install OpenNMS 1.3.2 on OpenSuse 10.2 system (The simplest version  )</a></li>
<li><a href='http://martinliu.cn/2007/02/opennms-discuss-nagios.html' rel='bookmark' title='翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”'>翻译[opennms-discuss]邮件组里的一个讨论“Nagios转变”</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2008/11/%e5%8f%91%e5%b8%83%e8%af%b4%e6%98%8e-opennms-160-stable-released.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NeDi &#8211; A Swiss Army Knife of network device management</title>
		<link>http://martinliu.cn/2008/09/nedi-a-swiss-army-knife-of-network-device-management.html</link>
		<comments>http://martinliu.cn/2008/09/nedi-a-swiss-army-knife-of-network-device-management.html#comments</comments>
		<pubDate>Sat, 13 Sep 2008 15:47:28 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[NSM]]></category>
		<category><![CDATA[NeDi]]></category>

		<guid isPermaLink="false">http://www.martinliu.cn/?p=223</guid>
		<description><![CDATA[There is a shot list of its feature Auto discovery network deivce Network Topology-Map SNMP based monitoring Network performance and inventory management NeDi movie will show you what it can do. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nedi.ch/" target="_self"><img src="http://www.nedi.ch/lib/tpl/minima/images/nedi-s.png" border="0" alt="" /></a><br />
There is a shot list of its feature</p>
<ul>
<li>Auto discovery network deivce</li>
<li>Network <a class="wikilink1" title="tutor:topology-map" href="http://www.nedi.ch/doku.php?id=tutor:topology-map">Topology-Map</a></li>
<li>SNMP based monitoring</li>
<li>Network performance and inventory management</li>
</ul>
<p><a href="http://www.youtube.com/watch?v=lHDhmtPfC7c"><span id="more-49228"></span>NeDi movie will show you what it can do.</a><br />
<object width="425" height="344"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/lHDhmtPfC7c&amp;hl=zh_CN&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/lHDhmtPfC7c&amp;hl=zh_CN&amp;fs=1"></embed></object></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2008/09/nedi-a-swiss-army-knife-of-network-device-management.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Systems Monitoring Shootout</title>
		<link>http://martinliu.cn/2008/08/systems-monitoring-shootout.html</link>
		<comments>http://martinliu.cn/2008/08/systems-monitoring-shootout.html#comments</comments>
		<pubDate>Mon, 04 Aug 2008 09:26:57 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[NSM]]></category>
		<category><![CDATA[GroundWorks]]></category>
		<category><![CDATA[Hyperic]]></category>
		<category><![CDATA[OpenNMS]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[Zabix]]></category>
		<category><![CDATA[Zenoss]]></category>

		<guid isPermaLink="false">http://www.martinliu.cn/?p=117</guid>
		<description><![CDATA[Please download it here A paper from Open Management Consortium This is a paper from &#8220;2008 Ottawa Linux Symposium&#8221;. It will give you a nice insight about some great NSM projects. It is talking about OpenNMS, Zabix, Zenoss, GroundWorks and Hyperic, those might b the hottest projects around NMS field. If you are looking for<p><a href="http://martinliu.cn/2008/08/systems-monitoring-shootout.html" class="more-link">Continue reading &#187;</a></p>
Related posts:<ol>
<li><a href='http://martinliu.cn/2008/10/some-old-stuff-for-sharing.html' rel='bookmark' title='Some old stuff for sharing'>Some old stuff for sharing</a></li>
<li><a href='http://martinliu.cn/2011/03/remedy-ars-open-source-tool.html' rel='bookmark' title='Remedy ARS 开源工具知多少'>Remedy ARS 开源工具知多少</a></li>
<li><a href='http://martinliu.cn/2008/10/open-source-and-cloud-computing%e5%bc%80%e6%ba%90%e4%b8%8e%e4%ba%91%e8%ae%a1%e7%ae%97.html' rel='bookmark' title='Open Source and Cloud Computing(开源与云计算)'>Open Source and Cloud Computing(开源与云计算)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Please download it here <a href="http://ols.fedoraproject.org/OLS/Reprints-2008/buytaert-reprint.pdf" target="_blank">A paper from Open Management Consortium</a></p>
<p><img align="right" style="margin: 8px" src="http://www.isausa.com/img/paper-to-cd-2.jpg" alt="" width="195" height="240" /> This is a paper from &#8220;2008 Ottawa Linux Symposium&#8221;. It will give you a nice insight about some great NSM projects. It is talking about OpenNMS, Zabix, Zenoss, GroundWorks and Hyperic, those might b the hottest projects around NMS field.  If you are looking for a open source network and system monitoring solution, or you are testing one of them; you should <a href="http://ols.fedoraproject.org/OLS/Reprints-2008/buytaert-reprint.pdf" target="_blank">check it out</a>. I got this paper from <a href="http://www.open-management.com" target="_blank">Open Management Consortium.</a></p>
<p>Sometimes, people might spend too much time on testing different projects; I know this is a kind of fun. But eventually they only got lots of comments about manny project. They still did not realize the value of open source. The best way to adpat open source is that you just pick one nice project and keeping to use it for months at least. I have a net admin frind who I had since helped to setup Cacti for all of his network devices. He don&#8217;t know so many NSM projects, but he really engoy Cacti. With Cacti, he can do a easier and better job then before. So, are you going to still watching open source world? Let&#8217;s get start your real open source journey.</p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2008/10/some-old-stuff-for-sharing.html' rel='bookmark' title='Some old stuff for sharing'>Some old stuff for sharing</a></li>
<li><a href='http://martinliu.cn/2011/03/remedy-ars-open-source-tool.html' rel='bookmark' title='Remedy ARS 开源工具知多少'>Remedy ARS 开源工具知多少</a></li>
<li><a href='http://martinliu.cn/2008/10/open-source-and-cloud-computing%e5%bc%80%e6%ba%90%e4%b8%8e%e4%ba%91%e8%ae%a1%e7%ae%97.html' rel='bookmark' title='Open Source and Cloud Computing(开源与云计算)'>Open Source and Cloud Computing(开源与云计算)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2008/08/systems-monitoring-shootout.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>盛夏严防服务器中暑</title>
		<link>http://martinliu.cn/2008/06/monitoring-temperature-and-fan-speed-using-ganglia.html</link>
		<comments>http://martinliu.cn/2008/06/monitoring-temperature-and-fan-speed-using-ganglia.html#comments</comments>
		<pubDate>Sun, 15 Jun 2008 15:50:31 +0000</pubDate>
		<dc:creator>Martin Liu</dc:creator>
				<category><![CDATA[NSM]]></category>
		<category><![CDATA[Ganglia]]></category>

		<guid isPermaLink="false">http://www.martinliu.cn/?p=103</guid>
		<description><![CDATA[哦不是中暑:-)而是发烧；夏天就要到了，监控服务器的主板温度和风扇是否工作正常有变的比较重要起来了。 今天发现一个文档 Monitoring Temperature and Fan Speed Using Ganglia and Winbond Chips 这个是一个不错的文档，值得参考一下。 文章是写如何在Ganglia中实现对主板温度和风扇的监控。以前也有人问过我这个问题“Ganglia的监控图上为什么没有温度也风扇的图”；相信您看后就知道怎么回事了。 下面是我对关于温度和风扇监控的一点想法： 主板的芯片能提供这些数据的访问给操作系统 操作系统上有sensors这个命令工具用来采集这些数据 有合适的脚本分析上面命令的输出数据转换成能被监控工具（ganglia， cacti，nagios， opennms）采集的格式等 往往这两个参数并不是监控工具的默认采集数据，所以需要扩展采集工具的采集集合，收集并保存这些数据。 在监控工具如Ganglia中显示这些数据，当然如果有自动报警功能就好了，可以及时通知管理员给服务器消暑：） Ganglia是最好的网格或者群集的监控软件，不过当你用它的使用也要注意到下面这个问题： What does Ganglia not provide? Ganglia does not attempt to address service monitoring or reporting (unlike Nagios). So far, we have not come across a single monitoring solution that addresses all of<p><a href="http://martinliu.cn/2008/06/monitoring-temperature-and-fan-speed-using-ganglia.html" class="more-link">Continue reading &#187;</a></p>
Related posts:<ol>
<li><a href='http://martinliu.cn/2008/04/using-ganglia-for-cluster-and-grid-monitoring.html' rel='bookmark' title='Using Ganglia for cluster and grid monitoring'>Using Ganglia for cluster and grid monitoring</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 15px;float: left" src="http://www.hlj.xinhuanet.com/xw/2007-03/24/xin_190304241641921962117.jpg" alt="" width="224" height="347" />哦不是中暑:-)而是发烧；夏天就要到了，监控服务器的主板温度和风扇是否工作正常有变的比较重要起来了。</p>
<p>今天发现一个文档 <a href="http://www.slac.stanford.edu/gen/edu/suli2006/finaltalks_thurs/caitie.ppt">Monitoring Temperature and Fan Speed Using Ganglia and Winbond Chips</a> 这个是一个不错的文档，值得参考一下。</p>
<p>文章是写如何在Ganglia中实现对主板温度和风扇的监控。以前也有人问过我这个问题“Ganglia的监控图上为什么没有温度也风扇的图”；相信您看后就知道怎么回事了。</p>
<p>下面是我对关于温度和风扇监控的一点想法：</p>
<ul>
<li>主板的芯片能提供这些数据的访问给操作系统</li>
<li>操作系统上有sensors这个命令工具用来采集这些数据</li>
<li>有合适的脚本分析上面命令的输出数据转换成能被监控工具（ganglia， cacti，nagios， opennms）采集的格式等</li>
<li>往往这两个参数并不是监控工具的默认采集数据，所以需要扩展采集工具的采集集合，收集并保存这些数据。</li>
<li>在监控工具如Ganglia中显示这些数据，当然如果有自动报警功能就好了，可以及时通知管理员给服务器消暑：）</li>
</ul>
<p>Ganglia是最好的网格或者群集的监控软件，不过当你用它的使用也要注意到下面这个问题：</p>
<p>What does Ganglia not provide?<br />
Ganglia does not attempt to address service monitoring or reporting (unlike Nagios). So far, we have not come across a single monitoring solution that addresses all of our needs effectively.</p>
<p>上面所说的服务监控是说，它的特点不是想Nagios和OpenNMS那样对服务器系统做非常全面细致的监控，它默认的监控指标比较少不过对于监控网格或者群集这种数量巨大的对象来说这些比较经典的指标也够用了，特别是对服务器的可用性，CUP、RAM，网络资源利用率和工作负载等数据的采集也比较够用了。如果你使用它来监控数量不是很多服务器的话，你可以使用它的可扩展性加入任何想监控的KPI。我最喜欢的还是它能把服务做分组，而且垂直的方向上可以加N层的嵌套；这种组织方式能比较好的适用于业务系统众多而复杂的数据中心。</p>
<p>Related posts:<ol>
<li><a href='http://martinliu.cn/2008/04/using-ganglia-for-cluster-and-grid-monitoring.html' rel='bookmark' title='Using Ganglia for cluster and grid monitoring'>Using Ganglia for cluster and grid monitoring</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://martinliu.cn/2008/06/monitoring-temperature-and-fan-speed-using-ganglia.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

