@sentry/node 集成将 bunyan 日志调用包装为面包屑
@sentry/node integration to wrap bunyan log calls as breadcrumbs
默认情况下,Sentry 集成了 console.log
,使其成为面包屑的一部分:
Link: Import name: Sentry.Integrations.Console
我们如何让它也适用于 bunyan logger,例如:
const koa = require('koa');
const app = new koa();
const bunyan = require('bunyan');
const log = bunyan.createLogger({
name: 'app',
..... other settings go here ....
});
const Sentry = require('@sentry/node');
Sentry.init({
dsn: MY_DSN_HERE,
integrations: integrations => {
// should anything be handled here & how?
return [...integrations];
},
release: 'xxxx-xx-xx'
});
app.on('error', (err) => {
Sentry.captureException(err);
});
// I am trying all to be part of sentry breadcrumbs
// but only console.log('foo'); is working
console.log('foo');
log.info('bar');
log.warn('baz');
log.debug('any');
log.error('many');
throw new Error('help!');
P.S。我已经尝试过 bunyan-sentry-stream but no success with @sentry/node,它只是推送条目而不是将它们视为面包屑。
Bunyan 支持自定义流,这些流只是函数调用。参见 https://github.com/trentm/node-bunyan#streams
下面是一个简单地写入控制台的自定义流示例。使用此示例直接写入 Sentry 模块会很直接,可能会调用 Sentry.addBreadcrumb({})
或类似函数。
请注意,尽管下面示例中的变量 record
是一个 JSON 字符串,因此您可能希望解析它以获取日志级别、消息和其他数据提交给 Sentry。
{
level: 'debug',
stream:
(function () {
return {
write: function(record) {
console.log('Hello: ' + record);
}
}
})()
}
默认情况下,Sentry 集成了 console.log
,使其成为面包屑的一部分:
Link: Import name: Sentry.Integrations.Console
我们如何让它也适用于 bunyan logger,例如:
const koa = require('koa');
const app = new koa();
const bunyan = require('bunyan');
const log = bunyan.createLogger({
name: 'app',
..... other settings go here ....
});
const Sentry = require('@sentry/node');
Sentry.init({
dsn: MY_DSN_HERE,
integrations: integrations => {
// should anything be handled here & how?
return [...integrations];
},
release: 'xxxx-xx-xx'
});
app.on('error', (err) => {
Sentry.captureException(err);
});
// I am trying all to be part of sentry breadcrumbs
// but only console.log('foo'); is working
console.log('foo');
log.info('bar');
log.warn('baz');
log.debug('any');
log.error('many');
throw new Error('help!');
P.S。我已经尝试过 bunyan-sentry-stream but no success with @sentry/node,它只是推送条目而不是将它们视为面包屑。
Bunyan 支持自定义流,这些流只是函数调用。参见 https://github.com/trentm/node-bunyan#streams
下面是一个简单地写入控制台的自定义流示例。使用此示例直接写入 Sentry 模块会很直接,可能会调用 Sentry.addBreadcrumb({})
或类似函数。
请注意,尽管下面示例中的变量 record
是一个 JSON 字符串,因此您可能希望解析它以获取日志级别、消息和其他数据提交给 Sentry。
{
level: 'debug',
stream:
(function () {
return {
write: function(record) {
console.log('Hello: ' + record);
}
}
})()
}