Sha256: c86d6b0e82366e90bef428a75112f6003560b7e2e7e4bb5ddf1eb0eb602af0dc
Contents?: true
Size: 529 Bytes
Versions: 33
Compression:
Stored size: 529 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 CacheWriteInstrumenter < Labkit::Tracing::AbstractInstrumenter def span_name(payload) "cache_write" end def tags(payload) { "component" => COMPONENT_TAG, "cache.key" => payload[:key] } end end end end end end
Version data entries
33 entries across 33 versions & 1 rubygems