Sha256: 96a94560f964fbf5f8463717cbe8de0422b649e3e223f5dfcd39ecf3ebb559f1
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-8.10.1 | lib/new_relic/agent/instrumentation/ignore_actions.rb |
newrelic_rpm-8.10.0 | lib/new_relic/agent/instrumentation/ignore_actions.rb |