appcd-agent

Monitors a Node.js process and tracks CPU usage, memory usage, and custom metrics.

Usage no npm install needed!

<script type="module">
  import appcdAgent from 'https://cdn.skypack.dev/appcd-agent';
</script>

README

appcd-agent

Monitors a Node.js process and tracks CPU usage, memory usage, and custom metrics.

Visit https://github.com/appcelerator/appc-daemon for more information.

Report issues to GitHub issues. Official issue tracker in JIRA.

Installation

npm i appcd-agent

Usage

import Agent from 'appcd-agent';

const agent = new Agent({
    pollInterval: 1000 // default
});

agent.on('stats', stats => {
    console.log(stats);
});

// add a custom async or sync data collector that returns an object
agent.addCollector(async () => {
    return {
        mydata: await fetchData();
    };
});

// start the polling loop
agent.start();

Get a snapshot of the collected data:

const data = agent.health();
console.log(data);

Stop the agent:

agent.stop();

Legal

This project is open source under the Apache Public License v2 and is developed by Axway, Inc and the community. Please read the LICENSE file included in this distribution for more information.