![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gcloud-monitor
Advanced tools
A node.js module for Custom monitoring using Google Cloud Monitoring v3 API
npm i --save gcloud-monitor
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 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 the cumulative metric
* @return {Promise}
*/
gauge.delete().then(function (data) {
console.log('Response data', data)
})
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 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 the cumulative metric
* @return {Promise}
*/
cumulative.delete().then(function (data) {
console.log('Response data', data)
})
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)
MIT
FAQs
Custom Google Cloud monitoring v3 client
The npm package gcloud-monitor receives a total of 1 weekly downloads. As such, gcloud-monitor popularity was classified as not popular.
We found that gcloud-monitor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.