Compare View

switch
from
...
to
 
Commits (3)

Changes

Showing 2 changed files Inline Diff

1 "use strict"; 1 "use strict";
2 2
3 const request = require('request'); 3 const request = require('request');
4 4
5 const config = require('./config'); 5 const config = require('./config');
6 const logger = require('./logger'); 6 const logger = require('./logger');
7 const matrix = require('./matrix'); 7 const matrix = require('./matrix');
8 8
9 let module_type; 9 let module_type;
10 10
11 function sendHeartbeat() { 11 function sendHeartbeat() {
12 if (!config || !config.core_url || !module_type) { return; } 12 if (!config || !config.core_url || !module_type) { return; }
13 13
14 let heartbeat_name = config.handler_name || config.origin;
15 if (config.username) {
16 heartbeat_name += '/' + config.username;
17 }
18
19 if (!heartbeat_name) {
20 logger.warn('Unknown heartbeat name, skip sending heartbeat');
21 return;
22 }
23
14 let heartbeat_name = config.handler_name || config.origin; 24 const requestOptions = {
15 if (config.username) { 25 uri: config.core_url + '/heartbeats',
16 heartbeat_name += '/' + config.username; 26 method: 'POST',
17 } 27 json: {
18 28 name: heartbeat_name,
19 if (!heartbeat_name) { 29 module_type: module_type,
20 logger.warn('Unknown heartbeat name, skip sending heartbeat'); 30 config: config,
21 return; 31 matrix: matrix
22 } 32 }
23 33 }
24 const requestOptions = { 34
25 uri: config.core_url + '/heartbeats', 35 request.post(requestOptions);
26 method: 'POST', 36 }
27 json: { 37
28 name: heartbeat_name, 38 setInterval(
29 module_type: module_type, 39 sendHeartbeat,
30 config: config, 40 60 * 1000
31 matrix: matrix 41 )
32 } 42
33 } 43 function setModuleType(value) {
44 logger.verbose('Set heartbeat module type as ' + value + ' and starting to send heartbeat per interval');
34 45 module_type = value;
35 request.post(requestOptions); 46 sendHeartbeat();
36 } 47 }
37 48
38 setInterval( 49 exports.setModuleType = setModuleType;
39 sendHeartbeat, 50
1 { 1 {
2 "name": "komodo-sdk", 2 "name": "komodo-sdk",
3 "version": "1.13.1", 3 "version": "1.13.2",
4 "description": "SDK for Komodo", 4 "description": "SDK for Komodo",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
7 "test": "mocha", 7 "test": "mocha",
8 "postversion": "git push && git push --tags" 8 "postversion": "git push && git push --tags"
9 }, 9 },
10 "repository": { 10 "repository": {
11 "type": "git", 11 "type": "git",
12 "url": "git@gitlab.kodesumber.com:komodo/komodo-sdk.git" 12 "url": "git@gitlab.kodesumber.com:komodo/komodo-sdk.git"
13 }, 13 },
14 "keywords": [ 14 "keywords": [
15 "ppob", 15 "ppob",
16 "payment", 16 "payment",
17 "komodo" 17 "komodo"
18 ], 18 ],
19 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>", 19 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>",
20 "license": "ISC", 20 "license": "ISC",
21 "dependencies": { 21 "dependencies": {
22 "basic-auth": "^2.0.0", 22 "basic-auth": "^2.0.0",
23 "body-parser": "^1.18.2", 23 "body-parser": "^1.18.2",
24 "express": "^4.16.2", 24 "express": "^4.16.2",
25 "express-session": "^1.15.6", 25 "express-session": "^1.15.6",
26 "lru-cache": "^4.1.1", 26 "lru-cache": "^4.1.1",
27 "moment": "^2.19.1", 27 "moment": "^2.19.1",
28 "numeral": "^2.0.6", 28 "numeral": "^2.0.6",
29 "nunjucks": "^3.0.1", 29 "nunjucks": "^3.0.1",
30 "request": "^2.81.0", 30 "request": "^2.81.0",
31 "simple-git": "^1.80.1", 31 "simple-git": "^1.80.1",
32 "strftime": "^0.10.0", 32 "strftime": "^0.10.0",
33 "uniqid": "^4.1.1", 33 "uniqid": "^4.1.1",
34 "uuid": "^3.1.0", 34 "uuid": "^3.1.0",
35 "winston": "^2.3.1", 35 "winston": "^2.3.1",
36 "winston-circular-buffer": "^1.0.0", 36 "winston-circular-buffer": "^1.0.0",
37 "winston-daily-rotate-file": "^1.4.6" 37 "winston-daily-rotate-file": "^1.4.6"
38 } 38 }
39 } 39 }
40 40