Sha256: 48e48641ee0917168c2f1be08c188e861f1f919fd86c20b54de4f2e12bcd80ca
Contents?: true
Size: 519 Bytes
Versions: 11
Compression:
Stored size: 519 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 CacheFetchHitInstrumenter < AbstractInstrumenter def span_name(payload) "cache_fetch_hit" end def tags(payload) { "component" => COMPONENT_TAG, "cache.key" => payload[:key] } end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems