Sha256: 4cfcf412050a3118da9297b8caae6ff6a2939689377db3e08124b0d855baffef
Contents?: true
Size: 986 Bytes
Versions: 1
Compression:
Stored size: 986 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('5.2.0') install do |_config| require_dependencies end present do defined?(::ActionView) end compatible do Gem.loaded_specs['actionview'].version >= MINIMUM_VERSION end option :disallowed_notification_payload_keys, default: [], validate: :array option :notification_payload_transform, default: nil, validate: :callable private def require_dependencies require_relative 'span_subscriber' require_relative 'railtie' end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-instrumentation-action_view-0.1.3 | lib/opentelemetry/instrumentation/action_view/instrumentation.rb |