0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/jstests/replsets/system_profile_secondary.js
2019-07-27 11:02:23 -04:00

25 lines
862 B
JavaScript

// This tests that we can successfully profile queries on secondaries.
(function() {
'use strict';
var rst = new ReplSetTest({nodes: 2});
rst.startSet();
rst.initiate();
rst.awaitReplication();
var secondaryDB = rst.getSecondary().getDB('test');
jsTestLog('Enable profiling on the secondary');
assert.commandWorked(secondaryDB.runCommand({profile: 2}));
jsTestLog('Perform a query that returns no results, but will get profiled.');
secondaryDB.doesntexist.find({}).itcount();
let numProfileEntries = (coll) =>
coll.getDB().system.profile.find({op: 'query', ns: coll.getFullName(), nreturned: 0}).itcount();
jsTestLog('Check the query is in the profile and turn profiling off.');
assert.eq(numProfileEntries(secondaryDB.doesntexist), 1, 'expected a single profile entry');
assert.commandWorked(secondaryDB.runCommand({profile: 0}));
rst.stopSet();
})();