Hi,
I am trying to show the fs size of mongodb. Which i can get by using statement in mongodb as db.stats(). But when I fetch the data using metricbeat mongodb module it is not fetching the fsusedsize, fstotal size.
I have enabled the mongodb module dbstats.
below is the outcome from mongodb when I use db.stats()
{
"db" : "INFRA-MONITORING",
"collections" : 1,
"views" : 0,
"objects" : 184080,
"avgObjSize" : 407.947099087353,
"dataSize" : 75094902.0,
"storageSize" : 15323136.0,
"numExtents" : 0,
"indexes" : 1,
"indexSize" : 7761920.0,
"fsUsedSize" : 1715961856.0,
"fsTotalSize" : 101327663104.0,
"ok" : 1.0
}
Any help will be really appreciated.