|
In a CS case, a user is asking for the "extentFreeList" to be included. The normal "dbstats" command includes this:
> db.stats();
|
{
|
"db" : "phongo",
|
"collections" : 69,
|
"objects" : 5605,
|
"avgObjSize" : 354.17234611953614,
|
"dataSize" : 1985136,
|
"storageSize" : 4739072,
|
"numExtents" : 89,
|
"indexes" : 67,
|
"indexSize" : 711312,
|
"fileSize" : 16777216,
|
"nsSizeMB" : 16,
|
"extentFreeList" : {
|
"num" : 0,
|
"totalSize" : 0
|
},
|
"dataFileVersion" : {
|
"major" : 4,
|
"minor" : 22
|
},
|
"ok" : 1
|
}
|
But the DatabaseStatsResult class (http://api.mongodb.org/csharp/2.0/html/T_MongoDB_Driver_DatabaseStatsResult.htm) does not define a field/getter for it.
|