Sha256: e003ada8ed5bf06f31ef48ed42f07712f0535ba53de2d1fed644b26df75c1ce3
Contents?: true
Size: 518 Bytes
Versions: 11
Compression:
Stored size: 518 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 < 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
11 entries across 11 versions & 1 rubygems