summaryrefslogtreecommitdiff
path: root/jstests/replsets/server_election_metrics.js
blob: a67e0027e97fc267b888e439ad89985d07b1af29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
 * Tests the format of 'electionMetrics' serverStatus section.
 */
(function() {
"use strict";

// Verifies that the 'electionMetrics' serverStatus section has the given field.
function verifyElectionMetricsField(serverStatusResponse, fieldName) {
    assert(serverStatusResponse.electionMetrics.hasOwnProperty(fieldName),
           () => (`The 'electionMetrics' serverStatus section did not have the '${fieldName}' \
field: \n${tojson(serverStatusResponse.electionMetrics)}`));
    return serverStatusResponse.electionMetrics[fieldName];
}

// Verifies that the 'electionMetrics' serverStatus section has a field for the given election
// reason counter and that it has the subfields 'called' and 'successful'.
function verifyElectionReasonCounterFields(serverStatusResponse, fieldName) {
    const field = verifyElectionMetricsField(serverStatusResponse, fieldName);
    assert(field.hasOwnProperty("called"),
           () => (`The '${fieldName}' field in the 'electionMetrics' serverStatus section did \
not have the 'called' field: \n${tojson(field)}`));
    assert(field.hasOwnProperty("successful"),
           () => (`The '${fieldName}' field in the 'electionMetrics' serverStatus section did \
not have the 'successful' field: \n${tojson(field)}`));
}

// Verifies the format of the 'electionMetrics' serverStatus section.
function verifyElectionMetricsSSS(serverStatusResponse) {
    assert(serverStatusResponse.hasOwnProperty("electionMetrics"),
           () => (`Expected the serverStatus response to have an 'electionMetrics' field:
${tojson(serverStatusResponse)}`));
    verifyElectionReasonCounterFields(serverStatusResponse, "stepUpCmd");
    verifyElectionReasonCounterFields(serverStatusResponse, "priorityTakeover");
    verifyElectionReasonCounterFields(serverStatusResponse, "catchUpTakeover");
    verifyElectionReasonCounterFields(serverStatusResponse, "electionTimeout");
    verifyElectionReasonCounterFields(serverStatusResponse, "freezeTimeout");
    verifyElectionMetricsField(serverStatusResponse, "numStepDownsCausedByHigherTerm");
    verifyElectionMetricsField(serverStatusResponse, "numCatchUps");
}

// Set up the replica set.
const rst = new ReplSetTest({nodes: 1});
rst.startSet();
rst.initiate();
const primary = rst.getPrimary();

const serverStatusResponse = assert.commandWorked(primary.adminCommand({serverStatus: 1}));
verifyElectionMetricsSSS(serverStatusResponse);

// Stop the replica set.
rst.stopSet();
}());