npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

signalfx-collect

v2.0.0-beta4

Published

SignalFx library to collect nodejs metrics and report to SignalFx

Downloads

25

Readme

SignalFx Node.js Collect

The SignalFx Node.js Collect is a library to monitor a Node.js application. It collects metrics about CPU utilization, memory usage, event loop, memory leaks, garbage collection and HTTP requests.

Installation

To install using npm:

$ npm install signalfx-collect

Note: You will get an error when > node-pre-gyp install --fallback-to-build is executed, stating that pre-built binaries couldn't be downloaded. We do not provide pre-built binaries. To ensure that no one can exploit binaries fetching we point node-pre-gyp to one of our domains, to a path which returns 403.

Usage

To use this library, you need a SignalFx org access token. For more information on access tokens, see the API's Authentication documentation. If your organization is currently sending metrics to SignalFx through SignalFx Node.js client, you can provide a preconfigured client object instead of an org access token.

The code example below is how to import signalfx-collect and start collecting metrics. Collect HTTP request metrics by registering middleware to your express application as shown in the example code below.

const express = require('express');
const app = express();

const SignalFxCollect = require('signalfx-collect');

let config = {
    accessToken: 'MY_ACCESS_TOKEN',
    interval: 1000
};

const collect = new SignalFxCollect(config);
collect.start();

// Add a middleware from SignalFxCollect module to collect HTTP metrics
app.use(collect.getMiddleware('express'));
app.get('/hello', (req, res) => {
    res.send('world');
});

To authenticate with a client object rather than an org access token, use the following example code:

...

const signalfx = require('signalfx');
const client = new signalfx.Ingest('MY_ACCESS_TOKEN');

let config = {
    signalFxClient: client,
    interval: 1000
};
const collect = new SignalFxCollect(config);
collect.start();

...

Once collect.start() is called, signalfx-collect will start polling for the metrics based on a provided interval in milliseconds.

When creating a neew SignalFxCollect instance, you must pass the config object which may contain the following fields:

  • accessToken (string) - SignalFx access token as explained above.
  • signalFxClient (string) - SignalFx Ingest client object.
  • ingestEndpoint (string) - custom url to send datapoints in format http://custom.domain/api/path
  • interval (int) - interval rate in milliseconds. (default: 10000)
  • extraDimensions (dict) - a dictionary of additional dimensions sent with metrics and events with string keys/values. Default is an empty dictionary.
  • logLevel (string) - a level for logging verbosity. Available levels are debug, info. No log will be shown except system exceptions if the level is not specified.

Below are the metrics sent by SignalFx Node.js Collect:

Metrics

  • nodejs.cpu.utilization.system (gauge)
  • nodejs.cpu.utilization.user (gauge)
  • nodejs.cpu.utilization.total (gauge)
  • nodejs.memory.system.total (gauge)
  • nodejs.memory.system.free (gauge)
  • nodejs.memory.heap.total (gauge)
  • nodejs.memory.heap.used (gauge)
  • nodejs.memory.rss (gauge)
  • nodejs.memory.gc.size (cumulative_counter)
  • nodejs.memory.gc.pause (cumulative_counter)
  • nodejs.memory.gc.total (cumulative_counter)
  • nodejs.memory.heap.leak (cumulative_counter)
  • nodejs.event_loop.max (gauge)
  • nodejs.event_loop.min (gauge)
  • nodejs.http.rq_total (cumulative_counter)
  • nodejs.http.rq_time (gauge)
  • nodejs.http.rq_<status_code> (cumulative_counter)
  • nodejs.http.rq_size (gauge)

License

Apache Software License v2 © SignalFx