Sha256: 71128dddcbb62bddb48b083b2dc1d6c78591e874fcecfe3e5b69aa2d8042c0ec

Contents?: true

Size: 1.67 KB

Versions: 30

Compression:

Stored size: 1.67 KB

Contents

# encoding: utf-8

module Backup
  module Notifier
    class Zabbix < Base

      attr_accessor :zabbix_host

      attr_accessor :zabbix_port

      attr_accessor :service_name

      attr_accessor :service_host

      attr_accessor :item_key

      def initialize(model, &block)
        super
        instance_eval(&block) if block_given?

        @zabbix_host  ||= Config.hostname
        @zabbix_port  ||= 10051
        @service_name ||= "Backup #{ model.trigger }"
        @service_host ||= Config.hostname
        @item_key     ||= 'backup_status'
      end

      private

      ##
      # Notify the user of the backup operation results.
      #
      # `status` indicates one of the following:
      #
      # `:success`
      # : The backup completed successfully.
      # : Notification will be sent if `on_success` is `true`.
      #
      # `:warning`
      # : The backup completed successfully, but warnings were logged.
      # : Notification will be sent if `on_warning` or `on_success` is `true`.
      #
      # `:failure`
      # : The backup operation failed.
      # : Notification will be sent if `on_warning` or `on_success` is `true`.
      #
      def notify!(status)
        send_message(message.call(model, :status => status_data_for(status)))
      end

      def send_message(message)
        msg = [service_host, service_name, model.exit_status, message].join("\t")
        cmd = "#{ utility(:zabbix_sender) }" +
              " -z '#{ zabbix_host }'" +
              " -p '#{ zabbix_port }'" +
              " -s #{ service_host }"  +
              " -k #{ item_key }"      +
              " -o '#{ msg }'"
        run("echo '#{ msg }' | #{ cmd }")
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 5 rubygems

Version Path
backup-ssh-4.4.5 lib/backup/notifier/zabbix.rb
backup-remote-0.0.19 lib/backup/notifier/zabbix.rb
cm-backup-1.0.0 lib/backup/notifier/zabbix.rb
backup-ssh-4.4.4 lib/backup/notifier/zabbix.rb
backup-ssh-4.4.3 lib/backup/notifier/zabbix.rb
backup-4.4.1 lib/backup/notifier/zabbix.rb
backup-remote-0.0.18 lib/backup/notifier/zabbix.rb
backup-remote-0.0.17 lib/backup/notifier/zabbix.rb
backup-remote-0.0.16 lib/backup/notifier/zabbix.rb
backup-remote-0.0.15 lib/backup/notifier/zabbix.rb
backup-ssh-4.4.2 lib/backup/notifier/zabbix.rb
backup-ssh-4.4.1 lib/backup/notifier/zabbix.rb
backup-remote-0.0.14 lib/backup/notifier/zabbix.rb
backup-remote-0.0.13 lib/backup/notifier/zabbix.rb
backup-remote-0.0.12 lib/backup/notifier/zabbix.rb
backup-remote-0.0.11 lib/backup/notifier/zabbix.rb
backup-ssh-4.4.0 lib/backup/notifier/zabbix.rb
backup-remote-0.0.10 lib/backup/notifier/zabbix.rb
backup-remote-0.0.9 lib/backup/notifier/zabbix.rb
backup-remote-0.0.8 lib/backup/notifier/zabbix.rb