当冻结并重新启动(热启动)AWS Lambda函数时,以前的面包屑消息仍然存在,并且在Sentry仪表板上我们看到了旧消息。
似乎在catchException调用之后未清除面包屑。即使重用了函数,清除调用之间上下文的正确方法是什么?
Sentry.init({
dsn: process.env.dsn,
environment: process.env.environment,
release: process.env.release
});
try {
Sentry.configureScope(scope => {
scope.setTag('transaction', context.awsRequestId);
scope.setTag('lambda', context.functionName);
});
Sentry.addBreadcrumb({
category: 'store',
message: 'Test',
level: Sentry.Severity.Info
});
throw new Error('Something bad happened');
} catch (error) {
context.callbackWaitsForEmptyEventLoop = false;
Sentry.captureException(error);
await Sentry.flush(context.getRemainingTimeInMillis());
}
答案 0 :(得分:1)
很抱歉,文档稀疏,但是在init
之后做:
Sentry.configureScope(scope => {
scope.clear();
});
应该可以解决问题。