Skip to content

Instantly share code, notes, and snippets.

@elhoyos
Created September 16, 2014 19:03
Show Gist options
  • Save elhoyos/ac462c921317394945fc to your computer and use it in GitHub Desktop.
Save elhoyos/ac462c921317394945fc to your computer and use it in GitHub Desktop.
heapdump snippet
var heapdump = require("heapdump");
function handleCallback(err) {
callback(err);
gc();
process.nextTick(function () {
heapdump.writeSnapshot('/var/local/' + Date.now() + '.heapsnapshot', function() {
console.log('dump complete');
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment