Sha256: ae953417a499f11613972156bb9b41ef2ba4f1fd0a4aae58d14022860fed9874

Contents?: true

Size: 663 Bytes

Versions: 11

Compression:

Stored size: 663 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 CacheReadInstrumenter < AbstractInstrumenter
          def span_name(payload)
            "cache_read"
          end

          def tags(payload)
            {
              "component" => COMPONENT_TAG,
              "cache.key" => payload[:key],
              "cache.hit" => payload[:hit],
              "cache.super_operation" => payload[:super_operation],
            }
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
gitlab-labkit-0.13.5 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.13.4 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.13.3 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.13.2 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.13.1 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.13.0 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.12.2 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.12.1 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.12.0 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.11.0 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb
gitlab-labkit-0.10.1 lib/labkit/tracing/rails/active_support/cache_read_instrumenter.rb