Sha256: afa814d4e98c942c2bfb94023e28644f79d7850344a0f2f98d52e414e8db3e15

Contents?: true

Size: 982 Bytes

Versions: 3

Compression:

Stored size: 982 Bytes

Contents

# frozen_string_literal: true

# Copyright The OpenTelemetry Authors
#
# SPDX-License-Identifier: Apache-2.0

module OpenTelemetry
  module Instrumentation
    module ActionView
      # The Instrumentation class contains logic to detect and install the ActionView instrumentation
      class Instrumentation < OpenTelemetry::Instrumentation::Base
        MINIMUM_VERSION = Gem::Version.new('6.1.0')
        install do |_config|
          require_dependencies
        end

        present do
          defined?(::ActionView)
        end

        compatible do
          gem_version >= MINIMUM_VERSION
        end

        option :disallowed_notification_payload_keys, default: [],  validate: :array
        option :notification_payload_transform,       default: nil, validate: :callable

        private

        def gem_version
          ::ActionView.version
        end

        def require_dependencies
          require_relative 'railtie'
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
opentelemetry-instrumentation-action_view-0.7.2 lib/opentelemetry/instrumentation/action_view/instrumentation.rb
opentelemetry-instrumentation-action_view-0.7.1 lib/opentelemetry/instrumentation/action_view/instrumentation.rb
opentelemetry-instrumentation-action_view-0.7.0 lib/opentelemetry/instrumentation/action_view/instrumentation.rb