This is the scenario:
You could take the binary logs from each of the masters, parse them with mysqlbinlog
and then run that into the consolidated machine.
Something very approximately like:
mysqlbinlog [binary log files] | mysql -h consolidated
you'd need some kind of simple application (I suspect it could be done in bash if you needed) to wrap the logic.