-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
235 lines (221 loc) · 7.32 KB
/
index.js
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
require('babel-polyfill');
var Config = require('./lib/config.js').default;
var StatfulCollectorAws = require('./lib/collector.js').default;
var fs = require('fs-extra');
var path = require('path');
var pm2 = require('pm2');
var generateConfig = function(configPath) {
var normalizedPath = path.normalize(configPath);
var source = path.normalize(__dirname + '/conf/defaults.json');
var target = path.join(normalizedPath, 'statful-collector-aws-conf.json');
return new Promise(function(resolve, reject) {
fs.copy(source, target, function(err) {
if (err) {
reject(err);
} else {
resolve(normalizedPath);
}
});
});
};
var start = function(configPath) {
var configToTry = new Config(configPath);
return new Promise(function(resolve, reject) {
configToTry.load().then(
function(loadedConfig) {
var collector = new StatfulCollectorAws(loadedConfig);
if (collector) {
collector.start().then(function() {
resolve(path.normalize(configPath));
});
} else {
reject(
'Error starting Statful Collector AWS with given configuration.'
);
}
},
function(error) {
reject(error);
}
);
});
};
var startManaged = function(configPath) {
return new Promise(function(resolve, reject) {
pm2.connect(function(err) {
if (err) {
reject(err);
} else {
pm2.start(
{
name: 'statful-collector-aws',
script: 'statful-collector-aws',
args: 'start ' + configPath
},
function(err) {
pm2.disconnect();
if (err) {
reject(err);
} else {
resolve();
}
}
);
}
});
});
};
var stopManaged = function() {
return new Promise(function(resolve, reject) {
pm2.connect(function(err) {
if (err) {
reject(err);
} else {
pm2.stop('statful-collector-aws', function(err) {
pm2.disconnect();
if (err) {
reject(err);
} else {
resolve();
}
});
}
});
});
};
var restartManaged = function() {
return new Promise(function(resolve, reject) {
pm2.connect(function(err) {
if (err) {
reject(err);
} else {
pm2.restart('statful-collector-aws', function(err) {
pm2.disconnect();
if (err) {
reject(err);
} else {
resolve();
}
});
}
});
});
};
var cli = function() {
var yargs = require('yargs')
.usage('Usage: $0 [command] <path>')
.command(
'generate-config <path>',
'Generate a default config for Statful Collector AWS on given path.'
)
.command(
'start <path>',
'Start the Statful Collector AWS with a config on the given path.'
)
.command(
'start-managed <path>',
'Start the Statful Collector AWS, managed by pm2, with a config on the given path.'
)
.command(
'stop-managed',
'Stop the Statful Collector AWS, managed by pm2.'
)
.command(
'restart-managed',
'Restart the Statful Collector AWS, managed by pm2.'
)
.demand(1)
.strict()
.example(
'$0 generate-config /etc/statful-collector-aws/conf',
'Generates a default Statful Collector AWS ' +
'config file on /etc/statful-collector-aws/conf/ with name statful-collector-aws-conf.json'
)
.example(
'$0 start /etc/statful-collector-aws/conf/statful-collector-aws-conf.json',
'Starts the Statful Collector AWS with the given config.'
)
.example(
'$0 start-managed /etc/statful-collector-aws/conf/statful-collector-aws-conf.json',
'Starts the Statful Collector AWS, managed by pm2, with the given config.'
)
.example(
'$0 stop-managed',
'Stop the Statful Collector AWS, managed by pm2.'
)
.example(
'$0 restart-managed',
'Restart the Statful Collector AWS, managed by pm2.'
)
.help('help')
.alias('h', 'help')
.epilog('Copyright 2019 Statful.');
var argv = yargs.argv;
var path = argv.path;
if (path) {
if (argv._[0] === 'start') {
start(path).then(
function(returnedPath) {
return console.log(
"Statful Collector AWS successfully loaded with configuration file at '" +
returnedPath +
"'"
);
},
function(error) {
return console.error(error);
}
);
} else if (argv._[0] === 'start-managed') {
startManaged(path).then(
function() {
return console.log(
'Pm2 successfully request a spawn for Statful Collector AWS process.'
);
},
function(error) {
return console.error(error);
}
);
} else if (argv._[0] === 'stop-managed') {
stopManaged().then(
function() {
return console.log(
'Pm2 successfully stopped for Statful Collector AWS process.'
);
},
function(error) {
return console.error(error);
}
);
} else if (argv._[0] === 'restart-managed') {
restartManaged().then(
function() {
return console.log(
'Pm2 successfully restarted for Statful Collector AWS process.'
);
},
function(error) {
return console.error(error);
}
);
} else if (argv._[0] === 'generate-config') {
generateConfig(path).then(
function(returnedPath) {
return console.log(
"Configuration file 'statful-collector-aws-conf.json' successfully created at '" +
returnedPath +
"'"
);
},
function(error) {
return console.error(error);
}
);
}
}
};
exports.generateConfig = generateConfig;
exports.start = start;
exports.startManaged = startManaged;
exports.cli = cli;