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

gcloud-monitor

v1.3.0

Published

Custom Google Cloud monitoring v3 client

Downloads

28

Readme

gcloud-monitor Build Status js-standard-style

A node.js module for Custom monitoring using Google Cloud Monitoring v3 API

Installation

npm i --save gcloud-monitor

Usage

Gauge

Create a Gauge Metric

const monitor = require('gcloud-monitor')({
  project: '<google-cloud-project-name>',
  resource: {
    // optional, defaults to {type: 'global'}
    // more info: https://cloud.google.com/monitoring/api/ref_v3/rest/v3/MonitoredResource
  },
  auth: {
    // optional, if using on GCE
    // more info: https://github.com/google/google-api-nodejs-client#authorizing-and-authenticating
  },
  // optional: default report throttle time
  timeout: 1000
})

/**
 * create a gauge
 * more info: https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricDescriptor
 * @param  {String} metricType
 * @param  {Object} [opts] metric params
 * @param  {Object} [opts.throttle] // report throttle time
 * @param  {Object} [opts.description]
 * @param  {Object} [opts.displayName]
 * @param  {Object} [opts.labels] label descriptors
 * @param  {Object} [opts.metricDomain] default: 'custom.googleapis.com'
 * @param  {Object} [opts.unit]
 * @param  {Object} [opts.valueType] default: 'INT64'
 * @return {Promise<Gauge,Error>} resolves gauge instance
 */
monitor.createGauge('connections', {
  displayName: 'Connections',
  description: 'Active socket connection count',
  labels: [{
    key: 'foo',
    description: 'foo label description',
    valueType: 'INT64'
  }],
  unit: 'connections',
  valueType: 'INT64'
}).then((gauge) => {
  // use gauge...
})

Report Gauge Metric Data

/**
 * report a metric value
 * @param  {*} value
 * @param  {Date} [time]
 * @param  {Object} [labels]
 * @return {Promise}
 */
gauge.report(1, new Date(), {
  foo: 1
}).then((data) => {
  console.log('Response data', data)
})

Delete a Gauge Metric

/**
 * delete the cumulative metric
 * @return {Promise}
 */
gauge.delete().then(function (data) {
  console.log('Response data', data)
})

Cumulative

Create a Cumulative Metric

const monitor = require('gcloud-monitor')({
  project: '<google-cloud-project-name>',
  auth: {/*auth-json*/} // optional, if using on GCE
})

/**
 * create a cumulative metric
 * more info: https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricDescriptor
 * @param  {String} metricType
 * @param  {Object} [opts] metric params
 * @param  {Object} [opts.description]
 * @param  {Object} [opts.displayName]
 * @param  {Object} [opts.labels] label descriptors
 * @param  {Object} [opts.metricDomain] default: 'custom.googleapis.com'
 * @param  {Object} [opts.unit]
 * @param  {Object} [opts.valueType] default: INT64
 * @return {Promise<Model,Error>} resolves Cumulative instance
 */
monitor.createCumulative('requestsPerSecond', {
  displayName: 'Requests per Second',
  description: 'Active socket connection count',
  labels: [{
    key: 'foo',
    description: 'foo label description',
    valueType: 'INT64'
  }],
  unit: 'req/s',
  valueType: 'INT64'
}).then((cumulative) => {
  // use cumulative...
})

Report Cumulative Metric Data

/**
 * report a metric value
 * @param  {*} value
 * @param  {Object|Date} [interval|endTime]
 * @param  {Object} [interval.startTime] default: last `interval.startTime` or `createCumulative` time
 * @param  {Object} [interval.endTime]
 * @param  {Object} [labels]
 * @return {Promise}
 */
cumulative.report(1, {
  startTime: startTime,
  endTime: new Date()
}, {
  foo: 1
}).then((data) => {
  console.log('Response data', data)
})

Delete a Cumulative Metric

/**
 * delete the cumulative metric
 * @return {Promise}
 */
cumulative.delete().then(function (data) {
  console.log('Response data', data)
})

Note about throttle

Throttle can be set globally as gcloud-monitor opt or on each individual "metric" as a factory opt. This option throttles metric reports to the interval specified in ms.

Cumulative time series metrics batching can be grouped by passing opt.groupBy function. For example, if you want to batch cumulative metric data grouped by label name: groupBy: (timeSeriesItem) => (timeSeriesItem.metric.labels && timeSeriesItem.metric.labels.name)

License

MIT