Socket
Book a DemoInstallSign in
Socket

zag-agent

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zag-agent

send metrics to zag-daemon

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
1
Created
Source

zag-agent

The metrics agent sends raw points to the zag-daemons where they will be aggregated.

API

var agent = require('zag-agent')([/* list of all metrics daemon "address:ports" */])

MetricsAgent#counter(String mkey[, Number value])

Increment a counter.

agent.counter("signup")

Increment a counter by a specific value.

agent.counter("search_results", results.length)

MetricsAgent#histogram(String mkey, Number value)

Track a distribution of values. All histograms automatically get a heat map.

agent.histogram("HTTP_server_latency|/index.html", 123)

MetricsAgent#scope(String scope)

Often times all of the metrics in a particular module should be scoped under the same key. #scope(key) returns a MetricsAgent that automatically prepends that key:

var latency = agent.scope("http_latency")
// This is the same as `agent.counter("http_latency>/index.html")`:
latency.counter("/index.html")

.close()ing a scoped agent will close the parent agent (they share a socket).

MetricsAgent#on("error", function(err) { })

The socket emitted an error.

MetricsAgent#close()

Close the socket.

agent.close()

Keywords

zag

FAQs

Package last updated on 04 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts