इसका सबसे आसान समाधान मोंगोडीबी इनबिल्ट $indexStats एकत्रीकरण चरण का उपयोग करना है, जिसे MongoDB 3.2 में जोड़ा गया है।
Mongo कंसोल का उपयोग करना:
db.collection.aggregate([ { $indexStats: { } } ])
पायमोंगो का उपयोग करना:
from pymongo import MongoClient
collection = MongoClient()[db_name][collection_name]
index_stats = collection.aggregate([{'$indexStats':{}}])
for index_info in index_stats:
print index_info