Sha256: 4c64f12b57d038b434b693e038662eee111ff14dfee7538958a8abd39a7ed420
Contents?: true
Size: 535 Bytes
Versions: 32
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true module Labkit module Tracing module Rails module ActiveSupport # For more information on the payloads: https://guides.rubyonrails.org/active_support_instrumentation.html class CacheGenerateInstrumenter < Labkit::Tracing::AbstractInstrumenter def span_name(payload) "cache_generate" end def tags(payload) { "component" => COMPONENT_TAG, "cache.key" => payload[:key] } end end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems