1 2 3 4 5 6 7 8 9 10 11 12
import * as SentryNode from '@sentry/node'; import config from './../../config/options.js'; export class Sentry { public constructor() { SentryNode.init({ dsn: config.credentials.sentryDsn, environment: config.environment, tracesSampleRate: 1.0 }); } }