Sha256: 33a3e4aa104e4de6063979383ebb033f1e319bde09a3cbb485af1bb268c7a2b3
Contents?: true
Size: 918 Bytes
Versions: 17
Compression:
Stored size: 918 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 = {}) {:server_side_app => {:template_render => to_hash}} end end end end
Version data entries
17 entries across 17 versions & 1 rubygems