# File lib/new_relic/agent/attribute_filter.rb, line 227
      def match?(name)
        if wildcard
          name.start_with?(@attribute_name)
        else
          @attribute_name == name
        end
      end