Fix that Rails.cache information could not be sent via StatsD (#8831)

This commit is contained in:
Yamagishi Kazutoshi 2018-09-30 07:05:59 +09:00 committed by Eugen Rochko
parent 10f7278e9a
commit 38a48a627c
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ if ENV['STATSD_ADDR'].present?
::NSA.inform_statsd(statsd) do |informant|
informant.collect(:action_controller, :web)
informant.collect(:active_record, :db)
informant.collect(:cache, :cache)
informant.collect(:active_support_cache, :cache)
informant.collect(:sidekiq, :sidekiq)
end
end