README.md in zabbix-ruby-client-0.0.10 vs README.md in zabbix-ruby-client-0.0.11

- old
+ new

@@ -1,8 +1,9 @@ Zabbix Ruby Client ==================== +[![Gem Version](https://badge.fury.io/rb/zabbix-ruby-client.png)](http://rubygems.org/gems/zabbix-ruby-client) [![Code Climate](https://codeclimate.com/github/eduvo/zabbix-ruby-client.png)](https://codeclimate.com/github/eduvo/zabbix-ruby-client) This tool is designed to make easy to install zabbix reporter on monitored servers using zabbix-sender rather than zabbix-agent. It targets on monitoring mainly linux servers and is built on a plugin system so that you can decide what is going to be reported. The development is still in progress but it produces results and works in my case. Use at your own risk and read the code first. It is developed under ruby 2 but should work on 1.9.3 as well. @@ -57,12 +58,14 @@ There are a set of standart plugins included in the package, aimed at linux systems. * ubuntu system stats ([system_tpl](master/zabbix-templates/system_tpl.xml) includes the following) * load (uses /proc/loadavg) [load_tpl](master/zabbix-templates/load_tpl.xml) * cpu (uses /proc/stat) [cpu_tpl](master/zabbix-templates/cpu_tpl.xml) - * memory (requires iostat, apt-get install sysstat) [memory_tpl](master/zabbix-templates/memory_tpl.xml) + * memory (uses /proc/meminfo) [memory_tpl](master/zabbix-templates/memory_tpl.xml) * disk (uses /proc/diskstats) [disk_tpl](master/zabbix-templates/disk_tpl.xml) + * args [ "md-0", "/", "vgebs" ] = group identifier, mountpoint, groupname where identifier is what is found in /proc/diskstats, and groupname is something found in df command. The mount point will be used as label. * network (uses /proc/net/dev) [network_tpl](master/zabbix-templates/network_tpl.xml) + * args [ eth0 ] is just the interface identifier * apt (uses ubuntu /usr/lib/update-notifier/apt-check) this one will populate the 'tag' field in host info, and is supposed to run every few hours or at least not every minute [apt_tpl](master/zabbix-templates/apt_tpl.xml) * sysinfo (uses uname -a) is populating the host info in the inventory, and should be ran at setup and/or monthly [sysinfo_tpl](master/zabbix-templates/sysinfo_tpl.xml) * apache (depends on mod_status with status_extended on) [apache_tpl](master/zabbix-templates/apache_tpl.xml) * mysql (uses mysqladmin extended-status) [mysql_tpl](master/zabbix-templates/mysql_tpl.xml)