I want to enable profiling on one of my MongoDB databases, via the node-mongodb-native driver.
However there doesn't seem to be a Db.setProfilingLevel() method (apart from on the Admin DB).
I've tried using db.command({setProfilingLevel: 2}) but get no such cmd: setProfilingLevel.
Works fine through the mongo shell with db.setProfilingLevel(2)