Git Product home page Git Product logo

nodereactionagent's Introduction

Node Reaction Agent

Overview

NodeReactionAgent 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

Installation

Using npm:

$ npm install nodereactionagent

Agent Configuration Options

Default confguration (place on line 1 of your server.js):

const NRA = require('nodereactionagent').setApiToken('TokenFromNodeReaction.com');

Set Agent URL

The agent is set up to post to our cloud servers, however, the agent can post to a URL of your choosing.

NRA.setAgentUrl('localhost:3000/YourEndPoint');

Post Transactions to Server

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.

NRA.sendTransactionsToServer(false); // defaults: true;

Save logs to disk

The agent can optionally save logs to disk with the following command.

NRA.saveLogToDisk(true, pathToSave); // defaults: false and project root folder

Log to Screen

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.

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();

Adding a module

You can write your own modules for Node Reaction to further extend it's utility.

Contributions

We welcome contributions. Please submit issues [email protected]

Authors

nodereactionagent's People

Contributors

ericfileti avatar jamesthomasedwards avatar jivanmukti avatar kunalpatel73 avatar modalton avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.