server-apm.js
3.23 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
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
const Sender = require('influx-batch-sender');
const MysqlSender = require('../lib/mysql-sender');
const config = require('../common/config');
const msg2row = require('./msg2row');
const lineparse = require('../lib/line-parse');
const errorSqlSender = new MysqlSender(config.table.error);
const slowRouterSqlSender = new MysqlSender(config.table.slow);
const routeInfluxSender = new Sender(config.reportRoute);
const apiInfluxSender = new Sender(config.reportApi);
const _ = require('lodash');
const API_BLACK_LIST = [
'app.shop.banner'
];
const server = {
async handle(data) {
let msgs = lineparse.parse(data);
for (let m of msgs) {
if (m.measurement === 'web-server-duration') {
let duration = parseInt(m.fields.duration);
if (duration > config.slowRoute.min / 10 && duration < config.slowRoute.max) {
const newData = _.merge({}, m, {
fields: {
duration
}
});
slowRouterSqlSender.addMessage(msg2row.slowRouter(newData));
}
if (m.tags.type.toLowerCase() === 'api') {
if (_.includes(API_BLACK_LIST, m.tags.api)) {
return;
}
apiInfluxSender.addMessage({
tags: {
app: m.tags.app,
host: m.tags.hostname,
api: m.tags.api
},
fields: {
duration: duration,
times: 1
}
});
}
if (m.tags.type.toLowerCase() === 'route') {
routeInfluxSender.addMessage({
tags: {
app: m.tags.app,
host: m.tags.hostname,
route: m.tags.route
},
fields: {
duration: duration
}
});
}
} else if (m.measurement === 'error-report') {
routeInfluxSender.addMessage({
measurement: 'error-info',
tags: {
app: m.tags.app,
host: m.tags.hostname,
route: m.tags.route,
code: m.tags.code
},
fields: {
times: 1
}
});
errorSqlSender.addMessage(msg2row.errorRouter(m));
} else if (m.measurement === 'process-info') {
m.measurement = 'process-info';
_.set(m, 'fields.memory', parseInt(_.get(m, 'fields.memory', '0')));
_.set(m, 'fields.cpu', parseInt(_.get(m, 'fields.cpu', '0')));
routeInfluxSender.addMessage(m);
}
}
}
};
module.exports = function(req, res, next) {
let data = req.body || ' ';
server.handle(data).then(() => {
res.status(204).json();
}).catch(next);
};