gpt4 book ai didi

javascript - Node.js winston 日志记录使用邮件传输仅将 uncaughtException 作为电子邮件发送

转载 作者:搜寻专家 更新时间:2023-11-01 00:30:47 24 4
gpt4 key购买 nike

有什么方法可以使用 Winston 模块的 Mail 传输将 uncaughtException 发送到电子邮件地址?我不想使用任何其他方法通过电子邮件发送 uncaughtExceptions。我知道有办法解决这个问题,但我更希望让 Winston 的邮件传输正常工作。

显然配置不支持

handleException: true 

如果可以的话会很酷。我使用其他传输来记录所有异常,但是,当涉及到 uncaughtException 异常时,我不仅想记录它,而且在它们被抛出时给自己发电子邮件,这样我就可以通过 ssh 进入系统并解决问题。显然,我将使用 foreverpm2 作为主管,无论如何都会重新启动应用程序。

似乎有一个关于只能通过电子邮件发送异常(exception)情况的问题,但没有人对此做出回应。我做了 +1 这个问题,希望能有所收获。

是否有人使用 Winston 的邮件传输仅发送 uncaughtException。如果是,您是如何解决这个问题的?分享将不胜感激。

最佳答案

奇怪的是,我通过更改配置记录器的方式让它工作。我在 exceptionHandlers 中添加了邮件传输并省略了 handleException: true 位。配置如下:

var winston = require('winston');
var Mail = require('winston-mail').Mail;

var logger = new (winston.Logger)({
transports: [
new (winston.transports.File)({
name: 'vehicle-log',
filename: './log/vehicle.log',
level: 'info',
timestamp: true,
colorize: true,
handleExceptions: true,
humanReadableUnhandledException: true,
prettyPrint: true,
json: true,
maxsize: 5242880
})
],
exceptionHandlers: [
new winston.transports.Mail({
to:'toAddress',
from:'fromAddress',
subject: 'uncaughtException Report',
host:'smtp.relaxitsjustanexample.com',
username:'emailadd',
password:'password',
ssl: true
})
]
});

出于测试目的,我通过一个 uncaughtException 并确保 Express 不会如下捕获它:

router.get('/api/burn', function(req, res) {
logger.info('ROUTE GET /api/burn');

process.nextTick(function() {
throw new Error('Catch me if you can.');
});
});

uncaughtException 由文件传输记录并通过邮件传输通过电子邮件发送。

当它不工作时,我对传输进行了不同的配置,然后我发现我可以使用 exceptionHandlers。我不知道使用 exceptionHanlders 是否使它工作或其他什么,但不管它是否工作。

关于javascript - Node.js winston 日志记录使用邮件传输仅将 uncaughtException 作为电子邮件发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35002546/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com