refactor trans

master
Matthew 2022-03-22 12:46:59 -04:00
parent 3923f66ceb
commit ae2bf9564e
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
2 changed files with 0 additions and 7 deletions

View File

@ -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();
}

View File

@ -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;