Sha256: 0c35eef21d67d9c2d05f63d214d6420895cbc24bf49bbc776e28c47001c1ee6e

Contents?: true

Size: 1.24 KB

Versions: 64

Compression:

Stored size: 1.24 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

module NewRelic
  module Agent
    module Instrumentation
      module IgnoreActions
        def self.is_filtered?(key, klass, action_name)
          # We'll walk the superclass chain and see if
          # any class says 'yes, filter this one'.

          while klass.respond_to? :newrelic_read_attr
            ignore_actions = klass.newrelic_read_attr(key)

            should_filter = case ignore_actions
            when Hash
              only_actions   = Array(ignore_actions[:only])
              except_actions = Array(ignore_actions[:except])
              action_name    = action_name.to_sym

              only_actions.include?(action_name) || (!except_actions.empty? && !except_actions.include?(action_name))
            else
              !!ignore_actions
            end

            return true if should_filter

            # Nothing so far says we should filter,
            # so keep checking up the superclass chain.
            klass = klass.superclass
          end

          # Getting here means that no class filtered this.
          false
        end
      end
    end
  end
end

Version data entries

64 entries across 64 versions & 2 rubygems

Version Path
newrelic_rpm-3.15.2.317 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.15.1.316 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.15.0.314 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.14.3.313 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.14.2.312 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.14.1.311 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.14.0.305 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.13.2.302 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.13.1.300 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.13.0.299 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.12.1.298 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.12.0.288 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.11.2.286 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.11.1.284 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.11.0.283 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.10.0.279 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.9.9.275 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.9.8.273 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.9.7.266 lib/new_relic/agent/instrumentation/ignore_actions.rb
newrelic_rpm-3.9.6.257 lib/new_relic/agent/instrumentation/ignore_actions.rb