Sha256: a4dae93d2c03065060661f08d21f7bd7a6348e9422e99289c32bfbbe4b5c929a
Contents?: true
Size: 1.09 KB
Versions: 42
Compression:
Stored size: 1.09 KB
Contents
# encoding: utf-8 module OneApm 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? :oneapm_read_attr ignore_actions = klass.oneapm_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
42 entries across 42 versions & 1 rubygems