@metrics/metric
The metric class definition which metric objects is instansiated from. You’ll likely not be using this directly, instead generating metrics with @metrics/client
.
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.
Usage
Instantiating a new metric:
API
constructor(options)
Create a new Metric instance.
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.
instance 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
ornull
. - Value is immutable.
- Defaults to
null
.
type
A hint of what type of metric this is.
- Valid value:
Integer
in the range of0-7
. - Value is immutable.
- Defaults to
0
.
Each numeric value reflect one of the following types:
0
representsunknown
.1
representsgauge
.2
representscounter
.3
representsstate_set
.4
representsinfo
.5
representscumulative histogram
.6
representsgauge histogram
.7
representssummary
.
source
The source of the metric in terms of where it originated.
- Valid value:
String
ornull
. - 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.
- Valid value:
Array
ofLabel
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
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
ornull
. - Is required.