refactor trans
parent
3923f66ceb
commit
ae2bf9564e
|
@ -72,9 +72,6 @@ export default class Client extends eris.Client {
|
|||
Sentry.init({
|
||||
dsn: 'https://323f6626a7104be7859088750b91abe1@sentry.libraryofcode.org/2',
|
||||
tracesSampleRate: 0.25,
|
||||
integrations: [
|
||||
new Sentry.Integrations.Http({ tracing: true }),
|
||||
],
|
||||
});
|
||||
Tracing.addExtensionMethods();
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
/* eslint-disable no-useless-return */
|
||||
import { Message, TextChannel, NewsChannel } from 'eris';
|
||||
import * as Sentry from '@sentry/node';
|
||||
import * as Tracing from '@sentry/tracing';
|
||||
import { Client, Event } from '../class';
|
||||
|
||||
export default class CommandHandler extends Event {
|
||||
|
@ -14,9 +13,6 @@ export default class CommandHandler extends Event {
|
|||
|
||||
public async run(message: Message) {
|
||||
const transaction = Sentry.startTransaction({ name: 'command-handler' });
|
||||
Sentry.configureScope((scope) => {
|
||||
scope.setSpan(transaction);
|
||||
});
|
||||
try {
|
||||
this.client.db.mongo.Stat.updateOne({ name: 'messages' }, { $inc: { value: 1 } }).exec();
|
||||
if (message.author.bot) return;
|
||||
|
|
Loading…
Reference in New Issue