You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

324 B

Mongo - Monitoring

Lesson Objectives

  1. Explain explain
  2. Explain stats
  3. Explain profile

Explain Explain

  1. db.employees.find().explain()

Explain stats

  1. db.stats()
  2. db.collectionName.stats()

Explain profile

  1. db.setProfilingLevel(2);
  2. db.employees.find();
  3. db.system.profile.find()