2023-08-03 18:28:14 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
if ENV['STATSD_ADDR'].present?
|
|
|
|
host, port = ENV['STATSD_ADDR'].split(':')
|
|
|
|
|
2024-06-24 14:41:04 +00:00
|
|
|
begin
|
|
|
|
statsd = Statsd.new(host, port)
|
|
|
|
statsd.namespace = ENV.fetch('STATSD_NAMESPACE') { ['Mastodon', Rails.env].join('.') }
|
2023-08-03 18:28:14 +00:00
|
|
|
|
2024-06-24 14:41:04 +00:00
|
|
|
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) if ENV['STATSD_SIDEKIQ'] == 'true'
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
Rails.logger.warn("statsd address #{ENV['STATSD_ADDR']} not reachable, proceeding without statsd")
|
2023-08-03 18:28:14 +00:00
|
|
|
end
|
|
|
|
end
|