Skip to content

Instantly share code, notes, and snippets.

@fiveisprime
Created November 27, 2013 16:03
Show Gist options
  • Save fiveisprime/7678165 to your computer and use it in GitHub Desktop.
Save fiveisprime/7678165 to your computer and use it in GitHub Desktop.
Health endpoint.
app.get('/health', function(req, res) {
res.send({
pid: process.pid,
memory: process.memoryUsage(),
uptime: process.uptime()
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment