summaryrefslogtreecommitdiffstats
path: root/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb
diff options
context:
space:
mode:
Diffstat (limited to 'roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb')
-rwxr-xr-xroles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb b/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb
deleted file mode 100755
index 02659228f..000000000
--- a/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env oo-ruby
-
-require 'optparse'
-require '/usr/local/lib/zabbix_helper'
-
-
-if __FILE__ == $0
- $stdout.sync = true
- $stderr.sync = true
-
- opt_name = nil
- opt_hostgroup = []
- opt_template = []
-
- optparse = OptionParser.new do |opts|
- opts.banner = "\nUsage: #{File.basename $0}\n\n"
-
- opts.on('--name NAME', '[REQUIRED] The host name to register') { |value| opt_name = value }
- opts.on('--hostgroup GROUP', '[REQUIRED] The hostgroup(s) with which to register') { |value| opt_hostgroup << value }
- opts.on('--template TEMPLATE', '[REQUIRED] The template with which to register') { |value| opt_template << value }
- end
-
- optparse.parse!
-
- abort optparse.help if opt_name.nil? || opt_hostgroup.empty? || opt_template.empty?
-
- puts "Adding host [#{opt_name}] to zabbix..."
-
- zh = ZabbixHelper.new()
- result = zh.create_agentless_host(opt_name, opt_hostgroup, opt_template)
- if result['hostids'].nil?
- raise "failed to add #{opt_name}"
- else
- puts "Successfully registered host with hostid [#{result['hostids'].first}]"
- end
-end