概要
在 12.x 里面V8模块内置了该功能,详见:
- https://medium.com/the-node-js-collection/easily-identify-problems-in-node-js-applications-with-diagnostic-report-dc82370d8029
- https://github.com/nodejs/node/pull/26501
简要的说是主要通过一列实验性接口process.report/experimental-report实现的。
实现
- 启动脚本开启诊断报告功能
node --experimental-report http_server.js
- 脚本设置参数
if (process.report) { // 监听报告类型
// 等同
process.report.reportOnFatalError = true;
process.report.reportOnUncaughtException = true;
process.report.reportOnSignal = true; // - 信号监听
process.report.signal = 'SIGQUIT'; // 信号值默认 SIGUSR2
}
- 手动调用1
const SECRET = '45u90rjigjrihfngihghkbgh+jghg/af';
// 诊断报告
function writeReport(WW, MF, req, resp, queryInfoDic) {
if (resp.finished) {
return;
}
if (!queryInfoDic.params.secret ||
queryInfoDic.params.secret.replace(/ /g, '+') !== SECRET) {
resp.end('1');
return;
}
if (!process.report) {
resp.end('writeReport unOpen');
return;
}
resp.end(process.report.writeReport()); // 生成报告、返回系统格式接口
}
只需把此请求挂在http/ws服务器route上即可。
- 手动调用2
kill -SIGQUIT <pid>
诊断报告文件类型
https://nodejs.org/dist/latest-v12.x/docs/api/report.html
分析
暂时没有发现比较好的分析工具,待补充
网友评论