2017-01-19 00:44:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-29 04:16:44 +03:00
|
|
|
if ENV['STATSD_ADDR'].present?
|
|
|
|
host, port = ENV['STATSD_ADDR'].split(':')
|
2017-01-19 00:44:29 +02:00
|
|
|
|
2019-07-02 12:34:39 +03:00
|
|
|
$statsd = ::Statsd.new(host, port)
|
|
|
|
$statsd.namespace = ENV.fetch('STATSD_NAMESPACE') { ['Mastodon', Rails.env].join('.') }
|
2017-01-19 00:44:29 +02:00
|
|
|
|
2019-07-02 12:34:39 +03:00
|
|
|
::NSA.inform_statsd($statsd) do |informant|
|
2017-09-29 04:16:44 +03:00
|
|
|
informant.collect(:action_controller, :web)
|
|
|
|
informant.collect(:active_record, :db)
|
2018-09-30 01:05:59 +03:00
|
|
|
informant.collect(:active_support_cache, :cache)
|
2017-09-29 04:16:44 +03:00
|
|
|
informant.collect(:sidekiq, :sidekiq)
|
|
|
|
end
|
2017-01-19 00:44:29 +02:00
|
|
|
end
|