Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/tracing/src/integrations/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { Express } from './express';
export { Mysql } from './mysql';
export { Mongo } from './mongo';
68 changes: 68 additions & 0 deletions packages/tracing/src/integrations/mysql.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
import { Hub } from '@sentry/hub';
import { EventProcessor, Integration } from '@sentry/types';
import { dynamicRequire, fill, logger } from '@sentry/utils';

interface MysqlConnection {
prototype: {
query: () => void;
};
}

/** Tracing integration for node-mysql package */
export class Mysql implements Integration {
/**
* @inheritDoc
*/
public static id: string = 'Mysql';

/**
* @inheritDoc
*/
public name: string = Mysql.id;

/**
* @inheritDoc
*/
public setupOnce(_: (callback: EventProcessor) => void, getCurrentHub: () => Hub): void {
let connection: MysqlConnection;

try {
// Unfortunatelly mysql is using some custom loading system and `Connection` is not exported directly.
connection = dynamicRequire(module, 'mysql/lib/Connection.js');
} catch (e) {
logger.error('Mysql Integration was unable to require `mysql` package.');
return;
}

// The original function will have one of these signatures:
// function (callback) => void
// function (options, callback) => void
// function (options, values, callback) => void
fill(connection.prototype, 'query', function(orig: () => void) {
return function(this: unknown, options: unknown, values: unknown, callback: unknown) {
const scope = getCurrentHub().getScope();
const parentSpan = scope?.getSpan();
const span = parentSpan?.startChild({
description: typeof options === 'string' ? options : (options as { sql: string }).sql,
op: `db`,
});

if (typeof callback === 'function') {
return orig.call(this, options, values, function(err: Error, result: unknown, fields: unknown) {
span?.finish();
callback(err, result, fields);
});
}

if (typeof values === 'function') {
return orig.call(this, options, function(err: Error, result: unknown, fields: unknown) {
span?.finish();
values(err, result, fields);
});
}

return orig.call(this, options, values, callback);
};
});
}
}