Sha256: 98c523f9e055be0a8566b588a9788cc6afcd4ce29309f746958d30c2342be9f9
Contents?: true
Size: 896 Bytes
Versions: 6
Compression:
Stored size: 896 Bytes
Contents
module Timber module Events # The template render event track template renderings and their performance. # # @note This event should be installed automatically through integrations, # such as the {Integrations::ActionView::LogSubscriber} integration. class TemplateRender < Timber::Event attr_reader :message, :name, :time_ms def initialize(attributes) @message = attributes[:message] || raise(ArgumentError.new(":message is required")) @name = attributes[:name] || raise(ArgumentError.new(":name is required")) @time_ms = attributes[:time_ms] || raise(ArgumentError.new(":time_ms is required")) @time_ms = @time_ms.round(6) end def to_hash {name: name, time_ms: time_ms} end alias to_h to_hash def as_json(_options = {}) {:template_render => to_hash} end end end end
Version data entries
6 entries across 6 versions & 1 rubygems