Is there a way to get the results of the mongostat utility such as no. of queries/sec, inserts/sec, etc. through java driver. One way I find out was to get the serverstatus through the Mongo object as:
db.command("serverStatus")
and then get the total queries performed till now and then manipulate it to get queries per second.
Is there any other better way to get this information?
db.command("serverStatus"), I'll get the total no. of queries that have been performed on the server. Then I'll have to poll and subtract the previous result from the current result. I was just wondering if there was any utility implemented in the java driver which could return the final result straight away. – aditya_gaur Mar 16 '11 at 3:36