Repository URL to install this package:
|
Version:
0.6.0 ▾
|
module Skylight
module Normalizers
module ActiveSupport
class CacheIncrement < Cache
register "cache_increment.active_support"
CAT = "app.cache.increment".freeze
TITLE = "cache increment"
def normalize(trace, name, payload)
[ CAT, TITLE, nil, payload ]
end
end
end
end
end