fix
parent
2d788946ab
commit
9a92db91bd
|
@ -72,6 +72,9 @@ export default class Client extends eris.Client {
|
||||||
Sentry.init({
|
Sentry.init({
|
||||||
dsn: 'https://323f6626a7104be7859088750b91abe1@sentry.libraryofcode.org/2',
|
dsn: 'https://323f6626a7104be7859088750b91abe1@sentry.libraryofcode.org/2',
|
||||||
tracesSampleRate: 0.25,
|
tracesSampleRate: 0.25,
|
||||||
|
integrations: [
|
||||||
|
new Sentry.Integrations.Http({ tracing: true }),
|
||||||
|
],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* eslint-disable no-useless-return */
|
/* eslint-disable no-useless-return */
|
||||||
import { Message, TextChannel, NewsChannel } from 'eris';
|
import { Message, TextChannel, NewsChannel } from 'eris';
|
||||||
import * as Sentry from '@sentry/node';
|
import * as Sentry from '@sentry/node';
|
||||||
|
import * as Tracing from '@sentry/tracing';
|
||||||
import { Client, Event } from '../class';
|
import { Client, Event } from '../class';
|
||||||
|
|
||||||
export default class CommandHandler extends Event {
|
export default class CommandHandler extends Event {
|
||||||
|
@ -28,6 +29,9 @@ export default class CommandHandler extends Event {
|
||||||
this.client.util.signale.log(`User '${message.author.username}#${message.author.discriminator}' ran command '${resolved.cmd.name}' in '${message.channel.id}'.`);
|
this.client.util.signale.log(`User '${message.author.username}#${message.author.discriminator}' ran command '${resolved.cmd.name}' in '${message.channel.id}'.`);
|
||||||
try {
|
try {
|
||||||
const transaction = Sentry.startTransaction({ name: 'command-handler' });
|
const transaction = Sentry.startTransaction({ name: 'command-handler' });
|
||||||
|
Sentry.configureScope((scope) => {
|
||||||
|
scope.setSpan(transaction);
|
||||||
|
});
|
||||||
await resolved.cmd.run(message, resolved.args);
|
await resolved.cmd.run(message, resolved.args);
|
||||||
transaction.finish();
|
transaction.finish();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|
Loading…
Reference in New Issue