2017-01-18 23:44:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-29 03:16:44 +02:00
|
|
|
if ENV['STATSD_ADDR'].present?
|
|
|
|
host, port = ENV['STATSD_ADDR'].split(':')
|
2017-01-18 23:44:29 +01:00
|
|
|
|
2017-09-29 03:16:44 +02:00
|
|
|
statsd = ::Statsd.new(host, port)
|
|
|
|
statsd.namespace = ['Mastodon', Rails.env].join('.')
|
2017-01-18 23:44:29 +01:00
|
|
|
|
2017-09-29 03:16:44 +02:00
|
|
|
::NSA.inform_statsd(statsd) do |informant|
|
|
|
|
informant.collect(:action_controller, :web)
|
|
|
|
informant.collect(:active_record, :db)
|
|
|
|
informant.collect(:cache, :cache)
|
|
|
|
informant.collect(:sidekiq, :sidekiq)
|
|
|
|
end
|
2017-01-18 23:44:29 +01:00
|
|
|
end
|