NodeReaction Agent is node application performance monitoring tool
npm install nodereactionagentNodeReactionAgent is an open source performance monitoring framework, included in application code to analyzes http requests and asynchronous operations while working in conjunction with a cloud service NodeReaction.com to store analyze and display information the agent gathers.
NodeReaction.com provides a detailed performance breakdown of a developer’s Node.js web applications and better understand where bottlenecks exist in their application.
git
shell
$ npm install nodereactionagent
`Agent Configuration Options
Default confguration (place on line 1 of your server.js):
`shell
const NRA = require('nodereactionagent').setApiToken('TokenFromNodeReaction.com');
`
$3
The agent is set up to post to our cloud servers, however, the agent can post to a URL of your choosing.
`shell
NRA.setAgentUrl('localhost:3000/YourEndPoint');
`
$3
The agent can be prevented from posting any information to servers and can be used as a screen logger or to log information to a file.
`shell
NRA.sendTransactionsToServer(false); // defaults: true;
`$3
The agent can optionally save logs to disk with the following command.
`shell
NRA.saveLogToDisk(true, pathToSave); // defaults: false and project root folder
`$3
`shell
NRA.logToScreen(true); // defaults: true
`Overriding your own Async Functions
You can use Node Reaction Agent in your any of your own async functions that occur during and HTTP request. In order to develop timing data just add the following lines into your application.`shell
const nodeReactionAgent = require("../Agent.js");// add this line when you want the trace to starts
let trace = nodeReactionAgent.createTrace('ModuleName', 'FunctionName');
// add this line when async function completes;
trace.end();
``