2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-23 06:19:47 +00:00
|
|
|
if false && ENV['STATSD_ADDR'].present?
|
2019-07-02 08:10:25 +01:00
|
|
|
host, port = ENV['STATSD_ADDR'].split(':')
|
|
|
|
|
|
|
|
statsd = ::Statsd.new(host, port)
|
|
|
|
statsd.namespace = ENV.fetch('STATSD_NAMESPACE') { ['GabSocial', Rails.env].join('.') }
|
|
|
|
|
|
|
|
::NSA.inform_statsd(statsd) do |informant|
|
|
|
|
informant.collect(:action_controller, :web)
|
|
|
|
informant.collect(:active_record, :db)
|
|
|
|
informant.collect(:active_support_cache, :cache)
|
|
|
|
informant.collect(:sidekiq, :sidekiq)
|
|
|
|
end
|
|
|
|
end
|