Ci sono ops
oggetto nei records
che contiene documenti/documenti inseriti.
Prova:
collectionUsers.insert({'name':'john'},function(err,records){
// You can explore more here
console.log("record contents",JSON.stringify(records,null,4));
// Desired output
console.log("Id of new document added = " + records.ops[0]._id);
});