README.md in zabbix-ruby-client-0.0.4 vs README.md in zabbix-ruby-client-0.0.5

- old
+ new

@@ -5,10 +5,12 @@ 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. +Check the [Changelog](CHANGELOG.md) for recent changes + ## Installation Install it yourself as: gem install zabbix-ruby-client @@ -16,26 +18,26 @@ ## Usage zrc init [name] # will create a directory [name] (default: zabbix-ruby-client) for # storing configuration and temporary files - + cd [name] bundle # makes the zabbix-ruby-client [name] ready to run # then edit config.yml according to your needs - zrc + zrc # to list available commands And when ready just install a cron task according to your environment - echo '* * * * * /bin/bash -lc "cd /path/to/zrc && bundle exec zrc go"' | crontab + echo '* * * * * /bin/bash -lc "cd /path/to/zrc && bundle exec zrc upload"' | crontab # or - echo '* * * * * /bin/zsh -c ". $HOME/.rvm/scripts/rvm && cd /path/to/zrc && bundle exec zrc go"' | crontab + echo '* * * * * /bin/zsh -c ". $HOME/.rvm/scripts/rvm && cd /path/to/zrc && bundle exec zrc upload"' | crontab # or - echo '* * * * * /bin/zsh -c "export RBENV_ROOT=/usr/local/var/rbenv && eval \"$(rbenv init - zsh)\" && cd /path/to/zrc && bundle exec zrc go"' | crontab + echo '* * * * * /bin/zsh -c "export RBENV_ROOT=/usr/local/var/rbenv && eval \"$(rbenv init - zsh)\" && cd /path/to/zrc && bundle exec zrc upload"' | crontab ## plugins There are a set of standart plugins included in the package, aimed at linux systems. @@ -63,9 +65,10 @@ * sendgrid * airbrake * disk occupation * try to work out a way to create host/graphs/alerts from the client using Zabbix API * verify compatibility with ruby 1.9 + ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)