Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.9 KB

createmaintenanceendpoint.md

File metadata and controls

37 lines (23 loc) · 1.9 KB

Create a maintenance endpoint



One Paragraph Explainer

A maintenance endpoint is a plain secured HTTP API that is part of the app code and its purpose is to be used by the ops/production team to monitor and expose maintenance functionality. For example, it can return a head dump (memory snapshot) of the process, report whether there are some memory leaks and even allow to execute REPL commands directly. This endpoint is needed where the conventional devops tools (monitoring products, logs, etc) fails to gather some specific type of information or you choose not to buy/install such tools. The golden rule is using professional and external tools for monitoring and maintaining the production, these are usually more robust and accurate. That said, there are likely to be cases where the generic tools will fail to extract information that is specific to Node or to your app – for example, should you wish to generate a memory snapshot at the moment GC completed a cycle – few NPM libraries will be glad to perform this for you but popular monitoring tools will be likely to miss this functionality



Code example: generating a head dump via code

var heapdump = require('heapdump');
 
router.get('/ops/headump', (req, res, next) => {
    logger.info('About to generate headump');
    heapdump.writeSnapshot((err, filename) => {
        console.log('headump file is ready to be sent to the caller', filename);
        fs.readFile(filename, "utf-8", (err, data) => {
            res.end(data);
        });
    });
});



Recommended Resources

Getting your Node.js app production ready (Slides)

Getting your Node.js app production ready (Video)

Getting your Node.js app production ready