Nejjednodušším řešením je použít vestavěnou agregační fázi $indexStats mongodb, přidanou v MongoDB 3.2.
Použití konzole Mongo:
db.collection.aggregate([ { $indexStats: { } } ])
Použití 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