~cytrogen/masto-fe

ref: e387175fc9a3ebfd72ab45ebfe43ecfabef7b0c3 masto-fe/config/initializers/statsd.rb -rw-r--r-- 478 bytes
e387175f — Matt Jankowski Fix RSpec/RepeatedExample cop (#24849) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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(:active_support_cache, :cache)
    informant.collect(:sidekiq, :sidekiq)
  end
end