mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
16 lines
426 B
Ruby
16 lines
426 B
Ruby
# frozen_string_literal: true
|
|
|
|
if ENV['STATSD_ADDR'].present?
|
|
host, port = ENV['STATSD_ADDR'].split(':')
|
|
|
|
statsd = ::Statsd.new(host, port)
|
|
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
|