apm.js
3.79 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
const queryParse = require('../lib/query-parse');
const sourceMapParse = require('../lib/sourcemap-parse');
const Sender = require('influx-batch-sender');
const _ = require('lodash');
const logger = global.yoho.logger;
const config = global.yoho.config;
const durationType = {
dcl: 'DOMContentLoaded',
ld: 'load',
fs: 'firstscreen'
};
const influxSender = new Sender(config.reportApi);
module.exports = (req, res, next) => {
if (!req.query.l) {
logger.error('query l is undefined');
return res.send();
}
const app = req.query.s || 'unknown';
try {
const report = queryParse.parse(req.query.l);
if (!report) {
logger.error('report can not be parse:', req.query.l);
return res.send();
}
report.forEach(item => {
if (item.pt && item.pt.indexOf('openby:yohobuy')) {
item.pt = item.pt.substring(0, item.pt.indexOf('openby:yohobuy'));
}
if (item.tp === 'err') {
let data = {
tags: {
app,
reqID: item.rid,
uid: item.u,
udid: item.ud,
route: item.pt || 'null'
}
};
sourceMapParse.parse({
fileUrl: item.sc,
line: parseInt(item.ln || 0, 10),
column: parseInt(item.cn || 0, 10)
}).then(originError => {
let fields = {};
if (!originError) {
// logger.error('sourcemap can not be parse', item);
fields = {
script: item.sc,
line: _.parseInt(item.ln || 0),
column: _.parseInt(item.cn || 0),
};
} else {
fields = {
script: originError.source,
line: _.parseInt(originError.line || 0),
column: _.parseInt(originError.column || 0),
};
}
influxSender.addMessage(_.merge(data, {
measurement: 'error-report',
tags: {
type: 'client'
},
fields: Object.assign({
message: item.msg,
useragent: req.get('user-agent'),
stack: item.st ? item.st.replace(/"/g, '') : ''
}, fields)
}));
});
} else {
let data = {
tags: {
app
},
fields: {
reqID: item.rid,
uid: item.u,
udid: item.ud,
route: item.pt
}
};
if (durationType[item.tp]) {
const duration = _.parseInt(item.t);
if (duration < 1000 * 60 * 10) {
influxSender.addMessage(_.merge(data, {
measurement: 'web-client-duration',
tags: {
type: durationType[item.tp]
},
fields: {
duration: duration,
useragent: req.get('user-agent')
}
}));
}
}
}
});
res.json();
} catch (e) {
return next(e);
}
};