// Commands executed and oplog entries caused by commands use test db.test.insert({_id:1,a:1}) // {op:"c", ns:"test.$cmd", o:{create:"test"} // {op:"i", ns:"test.test", o:{_id:1, a:1}} db.test.update({_id:1},{_id:1,a:1,b:1}) // {op:"u",ns:"test.test", o2:{_id:1}, o:{_id:1, a:1,b:1}} db.test.remove({_id:1}) // {op:"d", ns:"test.test", b:true, o:{_id:1}}