Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
You can just count the profile collection actually db.system.profile.count() probably – Sammaye Jan 2 at 8:20

1 Answer

As Sammaye mentioned above db.system.profile.count() will provide you a count. If you would like to take a look at the profile statistics you can use the following to retrieve the lastest profile entries: db.system.profile.find().sort({$natural:-1})

share|improve this answer
Thank you very much , i ran db.system.profile.count() , it displayed 39 . Again i executed java program , again the count is 39 . Please let me know if i am missing anything .please see the update in my question – Preethi Jain Jan 2 at 18:26
From what I see above you should be seeing the count increase, given profiling was still enabled. Can you run db.setProfilingLevel(2) again to confirm that profiling is still enabled? Restarting your mongod instance disables profiling so if you did restart you would have to run again. – James Wahlin Jan 2 at 18:43
James ,i forgot to give db.setProfilingLevel(2) command in shell . now once i gave this and run , everytime the count kept on increasing by 1, irrespective of java execution . is that normal ?? (that is after closing eclipse also – Preethi Jain Jan 2 at 18:53
Yes, that is normal. You are likely seeing the db.system.profile.count() command itself being logged. My suggestion would be to run db.system.profile.find().sort({$natural:-1}) which will show you what was recently added. Running should verify my statement above and provide information on what is being recorded. – James Wahlin Jan 2 at 21:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.