rillrate-js 0.3.3

rillrate binding for node.js
Documentation

rillrate-js

Dynamic tracing system that tends to be real-time.

Node.js bindings.

How to use

Add it as a dependency to your node.js project:

npm install --save @rillrate/rillrate

Import it in your code and install a tracer:

rillrate = require('@rillrate/rillrate');
rillrate.install();

Add a metric and use methods to update it:

gauge = new rillrate.Gauge("my.gauge");
gauge.set(123.0);