collect_data.js
1 KB
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
'use strict';
const Collect = require('../../ci/collect_data');
const {
Project
} = require('../../models');
module.exports = {
async collect(ctx) {
let projects,
servers = {};
setInterval(async() => {
if (!projects) projects = await Project.findAll();
if (!projects || !projects.length) {
return;
}
projects.forEach(async(p) => {
let hosts = [];
let target = p.deploy['production'].target;
if (typeof target === 'string') {
hosts.push(target);
} else {
hosts = target;
}
hosts = hosts || [];
hosts.forEach((host) => {
if (!servers[host]) {
servers[host] = new Collect(host, p.name, p.cloud);
}
servers[host].collect();
});
});
}, 5000);
}
};