Skip to content

Instantly share code, notes, and snippets.

@kylemclaren
Created April 24, 2015 10:22
Show Gist options
  • Save kylemclaren/1c19b189fc46ee7029b2 to your computer and use it in GitHub Desktop.
Save kylemclaren/1c19b189fc46ee7029b2 to your computer and use it in GitHub Desktop.
Show current index builds (MongoDB)
db.currentOp(
{
$or: [
{ op: "query", "query.createIndexes": { $exists: true } },
{ op: "insert", ns: /\.system\.indexes\b/ }
]
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment