Skip to content

Instantly share code, notes, and snippets.

@gharriso
Last active September 18, 2021 01:01
Show Gist options
  • Save gharriso/b652961b3431fee8d5ba4786f671942d to your computer and use it in GitHub Desktop.
Save gharriso/b652961b3431fee8d5ba4786f671942d to your computer and use it in GitHub Desktop.
mongo> function stageTimes(explan) {
var prevMS=0;
explan.stages.forEach(stg => {
print(Object.keys(stg)[0], stg.executionTimeMillisEstimate + 0-prevMS);
prevMS=stg.executionTimeMillisEstimate;
});
}
mongol> stageTimes(explainOut);
$cursor 3505
$group 1224
$sort 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment