Sha256: 5f3ab440c57d8a91101e14efcd75297889615076125a259468bd494eb15171ee
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 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'] || ::Datadog::Statsd::Connection::DEFAULT_HOST @statsd_port = (ENV['STATSD_PORT'] || ::Datadog::Statsd::Connection::DEFAULT_PORT).to_i @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.0 | lib/datadog/notifications/config.rb |