Forward pino logs to
Sentry. A fork of
pino-sentry with a few
simplifications and error object handling via the err
key.
npm install @graphprotocol/pino-sentry-simple -g
import { createWriteStream } from '@graphprotocol/pino-sentry-simple'
const opts = { /* ... */ }
const stream = createWriteStream({
dsn: process.env.SENTRY_DSN,
tagKeys: ['requestId'], // optional
excludeKeys: ['username'], // optional
})
const logger = pino(opts, stream)