GithubHelp home page GithubHelp logo

isabella232 / pubnub-rickshaw-memory Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pubnub/pubnub-rickshaw-memory

0.0 0.0 0.0 532 KB

Publish the memory usage of a nodeJS instance in pubnub-rickshaw format

JavaScript 87.22% CSS 8.00% HTML 3.75% Makefile 1.03%

pubnub-rickshaw-memory's Introduction

PubNub-Rickshaw-Memory

Monitor your NodeJS memory usage with PubNub. Plugs right into pubnub-rickshaw for easy realtime charts.

Quickstart

Install with npm.

npm install pubnub-rickshaw-memory

Include in your app with {dev: true}.

var pnrickmem = require('pubnub-rickshaw-memory');
pnrickmem.init({dev: true});

That's it! Now when you run your node app, you should see the following:

----------------------
pubnub-rickshaw-memory
----------------------

Monitor this instance:

http://localhost:1337?pnrickmem-bff2c45e-ab44-4204-92e3-bd69048502c0

----------------------

Visit the url to see a realtime graph of your NodeJS memory profile over time.

Options

Sent as an object during init().

pnrickmem.init({
  publish_key: 'demo',
  subscribe_key: 'demo',
  channel: uuid(),
  interval_timeout: 1000
  dev_mode: false,
  port: 3333
});
Parameter Details Type Default
publish_key Your PubNub publish key string 'demo'
subscribe_key Your PubNub subscribe key string 'demo'
channel Your PubNub channel string uuid.v4();
interval_timeout Delay between memory publishes integer 1000
dev_mode Enable development mode boolean false
port Port number for express server spawned when dev mode is enabled integer 3333

How it works

NodeJS memory usage is exposed through process.memoryUsage().

Every interval_timeout the module publishes the current output of process.memoryUsage() to the supplied publish_key and channel on the PubNub network. Read more about PubNub here.

Dev Mode

When dev: true is enabled in options, the module will spawn an express server on localhost using the supplied port. This is a simple static server that already includes the contents of pubnub-rickshaw.

Customization

You can customize your graph by configuring pubnub-rickshaw to subscribe the the same channel supplied in options.

pubnub-rickshaw-memory's People

Contributors

cvconover avatar ianjennings 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.