This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-18 14:44:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-28 18:16:44 -07:00
|
|
|
if ENV['STATSD_ADDR'].present?
|
|
|
|
host, port = ENV['STATSD_ADDR'].split(':')
|
2017-01-18 14:44:29 -08:00
|
|
|
|
2017-09-28 18:16:44 -07:00
|
|
|
statsd = ::Statsd.new(host, port)
|
2017-11-14 14:22:43 -08:00
|
|
|
statsd.namespace = ENV.fetch('STATSD_NAMESPACE') { ['Mastodon', Rails.env].join('.') }
|
2017-01-18 14:44:29 -08:00
|
|
|
|
2017-09-28 18:16:44 -07: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 14:44:29 -08:00
|
|
|
end
|