summaryrefslogtreecommitdiff
path: root/jstests/free_mon/free_mon_metrics_halt.js
blob: ec1c1248801aab8c4ffa892557313d34e7e09425 (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
// Ensure free monitoring gives up if metrics returns halt
//
load("jstests/free_mon/libs/free_mon.js");

(function() {
'use strict';

let mock_web = new FreeMonWebServer(FAULT_HALT_METRICS_5);

mock_web.start();

let options = {
    setParameter: "cloudFreeMonitoringEndpointURL=" + mock_web.getURL(),
    enableFreeMonitoring: "on",
    verbose: 1,
};

const conn = MongoRunner.runMongod(options);
assert.neq(null, conn, 'mongod was unable to start up');

mock_web.waitMetrics(6);

// It gets marked as disabled on halt
WaitForUnRegistration(conn);

MongoRunner.stopMongod(conn);

mock_web.stop();
})();