Skip to content

Instantly share code, notes, and snippets.

@ncarbon
Forked from doron2402/memwatch_detect.js
Created June 7, 2018 04:43
Show Gist options
  • Save ncarbon/d71ed1e06373eeddc01623e94e30a295 to your computer and use it in GitHub Desktop.
Save ncarbon/d71ed1e06373eeddc01623e94e30a295 to your computer and use it in GitHub Desktop.
Using memwatch-next in order to detect memory leak node 6.10.x
'use strict';
const Memwatch = require('memwatch-next');
const Util = require('util');
if (Config.env === 'production') {
/**
* Check for memory leaks
*/
let hd = null;
Memwatch.on('leak', (info) => {
console.log('memwatch::leak');
console.error(info);
if (!hd) {
hd = new Memwatch.HeapDiff();
}
else {
const diff = hd.end();
console.error(Util.inspect(diff, true, null));
trace.report('memwatch::leak', {
HeapDiff: hd
});
hd = null;
}
});
Memwatch.on('stats', (stats) => {
console.log('memwatch::stats');
console.error(Util.inspect(stats, true, null));
trace.report('memwatch::stats', {
Stats: stats
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment