Class: Labkit::Tracing::Rails::ActiveSupport::CacheDeleteInstrumenter Private
- Inherits:
-
AbstractInstrumenter
- Object
- AbstractInstrumenter
- Labkit::Tracing::Rails::ActiveSupport::CacheDeleteInstrumenter
- Defined in:
- lib/labkit/tracing/rails/active_support/cache_delete_instrumenter.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
For more information on the payloads: guides.rubyonrails.org/active_support_instrumentation.html
Instance Method Summary collapse
- #span_name(payload) ⇒ Object private
- #tags(payload) ⇒ Object private
Methods inherited from AbstractInstrumenter
Instance Method Details
#span_name(payload) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 |
# File 'lib/labkit/tracing/rails/active_support/cache_delete_instrumenter.rb', line 9 def span_name(payload) "cache_delete" end |
#tags(payload) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/labkit/tracing/rails/active_support/cache_delete_instrumenter.rb', line 13 def (payload) { "component" => COMPONENT_TAG, "cache.key" => payload[:key] } end |