You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
460 B
15 lines
460 B
# 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
|
|
|