about summary refs log blame commit diff
path: root/config/initializers/statsd.rb
blob: 45702ac94de671b14563ce1de24ee2646832a66f (plain) (tree)
1
2
3
4
5
6
7
8
                             
                                            
 
                                   
                                                                                        
 




                                               
   
# frozen_string_literal: true

if ENV['STATSD_ADDR'].present?
  host, port = ENV['STATSD_ADDR'].split(':')

  statsd = ::Statsd.new(host, port)
  statsd.namespace = ENV.fetch('STATSD_NAMESPACE') { ['Mastodon', Rails.env].join('.') }

  ::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
end