Remove nsa statsd integration (replaced by OpenTelemetry) (#30240)

This commit is contained in:
Matt Jankowski 2024-08-22 16:28:54 -04:00 committed by GitHub
parent e08d22724d
commit 6ec768668e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 27 deletions

View file

@ -1,19 +0,0 @@
# frozen_string_literal: true
if ENV['STATSD_ADDR'].present?
host, port = ENV['STATSD_ADDR'].split(':')
begin
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) if ENV['STATSD_SIDEKIQ'] == 'true'
end
rescue
Rails.logger.warn("statsd address #{ENV['STATSD_ADDR']} not reachable, proceeding without statsd")
end
end