Den enkleste løsning på dette er at bruge det mongodb indbyggede $indexStats aggregeringstrin, tilføjet i MongoDB 3.2.
Brug af Mongo-konsollen:
db.collection.aggregate([ { $indexStats: { } } ])
Brug af PyMongo:
from pymongo import MongoClient
collection = MongoClient()[db_name][collection_name]
index_stats = collection.aggregate([{'$indexStats':{}}])
for index_info in index_stats:
print index_info