De eenvoudigste oplossing hiervoor is om de in MongoDB ingebouwde $indexStats-aggregatiefase te gebruiken, toegevoegd in MongoDB 3.2.
De Mongo-console gebruiken:
db.collection.aggregate([ { $indexStats: { } } ])
PyMongo gebruiken:
from pymongo import MongoClient
collection = MongoClient()[db_name][collection_name]
index_stats = collection.aggregate([{'$indexStats':{}}])
for index_info in index_stats:
print index_info