Files
dbgate/plugins/dbgate-plugin-mongo/src/backend/index.js
Jan Prochazka 2e37788471 profiler charts
2022-12-18 13:48:24 +01:00

17 lines
358 B
JavaScript

const driver = require('./driver');
const {
formatProfilerEntry,
extractProfileTimestamp,
aggregateProfileChartEntry,
} = require('../frontend/profilerFunctions');
module.exports = {
packageName: 'dbgate-plugin-mongo',
drivers: [driver],
functions: {
formatProfilerEntry,
extractProfileTimestamp,
aggregateProfileChartEntry,
},
};