Sha256: 172c88da911ec1bd17a75c6309206117e9f24542e7cd322e3f5373742d96b6ee
Contents?: true
Size: 514 Bytes
Versions: 11
Compression:
Stored size: 514 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 CacheDeleteInstrumenter < AbstractInstrumenter def span_name(payload) "cache_delete" 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