Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
skylight / lib / skylight / normalizers / active_support / cache_read.rb
Size: Mime:
module Skylight
  module Normalizers
    module ActiveSupport
      class CacheRead < Cache
        register "cache_read.active_support"

        CAT = "app.cache.read".freeze
        TITLE = "cache read"

        def normalize(trace, name, payload)
          [ CAT, TITLE, nil, payload ]
        end
      end
    end
  end
end