Sha256: 3f7286f203ebef8f767d59e2c91674bf589bb612e0c06d70b0ecad380d42bfa9
Contents?: true
Size: 889 Bytes
Versions: 32
Compression:
Stored size: 889 Bytes
Contents
# frozen_string_literal: true module Labkit module Tracing module Rails module ActionView # For more information on the payloads: https://guides.rubyonrails.org/active_support_instrumentation.html class RenderCollectionInstrumenter < Labkit::Tracing::AbstractInstrumenter def span_name(payload) identifier = ActionView.template_identifier(payload) if identifier.nil? "render_collection" else "render_collection:#{identifier}" end end def tags(payload) { "component" => COMPONENT_TAG, "template.id" => payload[:identifier], "template.count" => payload[:count] || 0, "template.cache.hits" => payload[:cache_hits] || 0, } end end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems