Giải pháp đơn giản nhất cho việc này là sử dụng giai đoạn tổng hợp $ indexStats trong mongodb, được thêm vào trong MongoDB 3.2.
Sử dụng bảng điều khiển Mongo:
db.collection.aggregate([ { $indexStats: { } } ])
Sử dụng 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