Socket
Socket
Sign inDemoInstall

@metrics/metric

Package Overview
Dependencies
0
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @metrics/metric

The metric class definition which metric objects in the @metrics library is instansiated from


Version published
Weekly downloads
7K
decreased by-13.87%
Maintainers
3
Install size
14.3 kB
Created
Weekly downloads
 

Changelog

Source

2.3.3 (2023-11-08)

Bug Fixes

  • cjs-shaped type declaration (a449eb7)

Notable changes to this project.

The latest version of this document is always available in [releases][releases-url].

Readme

Source

@metrics/metric

The metric class definition which metric objects is instansiated from.

Dependencies GitHub Actions status Known Vulnerabilities

Installation

$ npm install @metrics/metric

Example

const Metric = require('@metrics/metric');

const metric = new Metric({
    name: 'unique_metric_name',
    description: 'Description of metric being collected',
    value: 10,
});

Description

This module is the metric class definition which metric objects is instansiated from.

All modules in the @metric family which exchange data over the stream API exchange this object type. This object definition is intended to be static over time so modules who depend on a module in the @metric family can rely on exchanging data over time.

This class definition is prefered over object literals when exchanging data over the stream API because it will guarantee that all properties are available on the object. All undefined properties will have a null value, making sure they are kept when serialized to JSON.

The metric object aims to be compatible with the Open Metrics initiative.

Constructor

Create a new Metric instance.

const Metric = require('@metrics/metric');
const metric = new Metric(options);

options (required)

An object literal reflecting the properties of this class. The following properties is required:

  • name - String - The name of the metric.
  • description - String - The description of the metric.

Each property value is validated and will throw if a property value is found to be invalid.

Properties

The instansiated object has the following properties:

name

The name of the metric.

  • Valid value: String in the range of [a-zA-Z_][a-zA-Z0-9_].
  • Value is immutable.
  • Is required.

description

A human readable description of the metric.

  • Valid value: String.
  • Value is immutable.
  • Is required.

value

The value of the metric.

  • Valid value: Integer or null.
  • Value is immutable.
  • Defaults to null.

type

A hint of what type of metric this is.

  • Valid value: Integer in the range of 0-7.
  • Value is immutable.
  • Defaults to 0.

Each numeric value reflect one of the following types:

  • 0 represents unknown.
  • 1 represents gauge.
  • 2 represents counter.
  • 3 represents state_set.
  • 4 represents info.
  • 5 represents cumulative histogram.
  • 6 represents gauge histogram.
  • 7 represents summary.

source

The source of the metric in terms of where it originated.

  • Valid value: String or null.
  • Value is mutable.
  • Defaults to null.

timestamp

A timestamp of when the metric was created.

  • Valid value: Double - epoc milliseconds.
  • Value is immutable.
  • Defaults to Date.now() / 1000.

labels

An Array of labeled values. Each item in the Array must be a Label object. Please see the Labels section for further info.

  • Valid value: Array of Label objects.
  • Value is immutable.
  • Defaults to an empty Array.

meta

Available to be used to hold any data. The input is not validated.

  • Valid value: any.
  • Value is immutable.
  • Default to null.

time

Is deprecated.

Label object

A Label object is a object literal which have the following properties:

name

The name of the label.

  • Valid value: String in the range of [a-zA-Z0-9_].
  • Is required.

value

The value of the label.

  • Valid value: Integer, String, Boolean or null.
  • Is required.

Keywords

FAQs

Last updated on 08 Nov 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc