日志存在于 AWS 云监视中,但不返回日志



这是我的代码,与filterLogEvents函数一起使用,用于过滤日志,但不重新调整日志。

let params = {
logGroupName : 'xxxx',
filterPattern: '{ $.notification.messageId = "d890f718-5f1a-5b1c-9694-a141de3101bs" }'
};
cloudWatchLogs.filterLogEvents(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else     console.log(data.events);           // successful response
});

这是运行函数时的响应 [](空数组,但日志存在于云监视中(

你能试试

await cloudWatchLogs.filterLogEvents(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else     console.log(data.events); // successful response
}).promise();

相关内容

  • 没有找到相关文章

最新更新