I am using Mongodb with java
This is my program
public class ManagePeople {
public static void main(String[] args) {
try {
Mongo m = new Mongo("localhost", 27017);
DB db = m.getDB("ravi");
DBCollection coll = db.getCollection("users");
DBCursor cur = coll.find();
int count = cur.count();
} catch (Exception e) {
e.printStackTrace();
}
}
}
I am trying to find out , how many calls were made to the mongodb with this above program
For this i have set
db.setProfilingLevel(2)
in shell , as a result it showed
{ "was" : 2, "slowms" : 100, "ok" : 1 }
Now please tell me how can i look into the system.profile collection on the server , to find out how many calls were made to the MongoDB ??
Updated Part
** use ravi switched to db ravi
db.system.profile.count() 51
db.system.profile.count() 53
db.system.profile.count() 54
db.system.profile.count()
56
db.system.profile.count()probably – Sammaye Jan 2 at 8:20