├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── config.yaml.example ├── hipchat.rb ├── notify.rb └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | config.yaml 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'micro-optparse' 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agperson/zabbix-hipchat-alerts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agperson/zabbix-hipchat-alerts/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agperson/zabbix-hipchat-alerts/HEAD/config.yaml.example -------------------------------------------------------------------------------- /hipchat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agperson/zabbix-hipchat-alerts/HEAD/hipchat.rb -------------------------------------------------------------------------------- /notify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agperson/zabbix-hipchat-alerts/HEAD/notify.rb -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agperson/zabbix-hipchat-alerts/HEAD/screenshot.png --------------------------------------------------------------------------------