Sha256: 78c9074fffa56f76c684b719207523a76b2357c82bee279d5eba58b6aed6cf2b

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

module Datadog
  class Notifications
    class Config
      attr_accessor :hostname, :namespace, :tags, :statsd_host, :statsd_port, :reporter, :plugins, :socket_path

      def initialize
        @hostname    = ENV['INSTRUMENTATION_HOSTNAME'] || Socket.gethostname
        @statsd_host = ENV['STATSD_HOST']
        @statsd_port = ENV['STATSD_PORT']
        @socket_path = ENV['SOCKET_PATH']
        @reporter    = Datadog::Notifications::Reporter
        @tags        = []
        @plugins     = []
      end

      # Use a plugin
      def use(klass, **opts)
        @plugins.push klass.new(**opts)
      end

      protected

      def connect!
        env = ENV['RAILS_ENV'] || ENV['RACK_ENV']
        tags.push("env:#{env}")       if env && tags.none? {|t| t =~ /^env\:/ }

        enable_hostname = hostname && hostname != 'false'
        tags.push("host:#{hostname}") if enable_hostname && tags.none? {|t| t =~ /^host\:/ }

        reporter.new statsd_host, statsd_port, namespace: namespace, tags: tags, socket_path: socket_path
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog-notifications-0.6.3 lib/datadog/notifications/config.rb