# File lib/new_relic/agent/attribute_filter.rb, line 212 def <=>(other) name_cmp = @attribute_name <=> other.attribute_name return name_cmp unless name_cmp == 0 if wildcard != other.wildcard return wildcard ? -1 : 1 end if is_include != other.is_include return is_include ? -1 : 1 end return 0 end