Browse Source

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

pull/4/head
Yamagishi Kazutoshi 5 years ago
committed by Eugen Rochko
parent
commit
65f04e6046
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      config/initializers/statsd.rb

+ 1
- 1
config/initializers/statsd.rb 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

Loading…
Cancel
Save