Sha256: 38bc7c0ca0cb41922f766d6536ed62f65ece937cfbc65d50a4b73cc8f0593058

Contents?: true

Size: 835 Bytes

Versions: 1

Compression:

Stored size: 835 Bytes

Contents

# frozen_string_literal: true

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

require 'opentelemetry'

module OpenTelemetry
  module Instrumentation
    module Rails
      # The Instrumentation class contains logic to detect and install the Rails
      # instrumentation
      class Instrumentation < OpenTelemetry::Instrumentation::Base
        MINIMUM_VERSION = Gem::Version.new('7')

        # This gem requires the instrumentantion gems for the different
        # components of Rails, as a result it does not have any explicit
        # work to do in the install step.
        install { true }
        present { defined?(::Rails) }
        compatible { gem_version >= MINIMUM_VERSION }

        private

        def gem_version
          ::Rails.gem_version
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
opentelemetry-instrumentation-rails-0.35.0 lib/opentelemetry/instrumentation/rails/instrumentation.rb