Use the mysql admin tool to see the rows inserted
mysqladmin -u root -p extended -r -i 10 |grep ‘Innodb_rows_inserted ‘
Also you can use the processlist command inside mysql to view the activity. This will be best if there are no other activities going on the mysql db
mysql> show processlist;