Skip to content

Commit

Permalink
Add function for setting a Histogram to zero for given labels
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasstockner authored and zbjornson committed Feb 1, 2021
1 parent e29a172 commit 96f7495
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,6 +13,8 @@ project adheres to [Semantic Versioning](http://semver.org/).

### Added

- feat: added `zero()` to `Histogram` for setting the metrics for a given label combination to zero

## [13.1.0] - 2021-01-24

### Changed
Expand Down
18 changes: 18 additions & 0 deletions README.md
Expand Up @@ -326,6 +326,24 @@ xhrRequest(function (err, res) {
});
```

#### Zeroing metrics with Labels

Metrics with labels can not be exported before they have been observed at least
once since the possible label values are not known before they're observed.

For histograms, this can be solved by explicitly zeroing all expected label values:

```js
const histogram = new client.Histogram({
name: 'metric_name',
help: 'metric_help',
buckets: [0.1, 5, 15, 50, 100, 500],
labels: ['method'],
});
histogram.zero({ method: 'GET' });
histogram.zero({ method: 'POST' });
```

#### Strongly typed Labels

Typescript can also enforce label names using `as const`
Expand Down
5 changes: 5 additions & 0 deletions index.d.ts
Expand Up @@ -389,6 +389,11 @@ export class Histogram<T extends string> {
*/
reset(): void;

/**
* Initialize the metrics for the given combination of labels to zero
*/
zero(labels: LabelValues<T>): void;

/**
* Return the child for given labels
* @param values Label values
Expand Down
13 changes: 13 additions & 0 deletions lib/histogram.js
Expand Up @@ -73,6 +73,19 @@ class Histogram extends Metric {
this.hashMap = {};
}

/**
* Initialize the metrics for the given combination of labels to zero
* @param {object} labels - Object with labels where key is the label key and value is label value. Can only be one level deep
* @returns {void}
*/
zero(labels) {
const hash = hashObject(labels);
this.hashMap[hash] = createBaseValues(
labels,
Object.assign({}, this.bucketValues),
);
}

/**
* Start a timer that could be used to logging durations
* @param {object} labels - Object with labels where key is the label key and value is label value. Can only be one level deep
Expand Down
50 changes: 50 additions & 0 deletions test/histogramTest.js
Expand Up @@ -279,6 +279,48 @@ describe('histogram', () => {
});
});

describe('zero', () => {
beforeEach(() => {
instance = new Histogram({
name: 'histogram_labels',
help: 'Histogram with labels fn',
labelNames: ['method'],
});
});

it('should zero the given label', async () => {
instance.zero({ method: 'POST' });
const values = getValuesByLabel(
'POST',
(await instance.get()).values,
'method',
);
values.forEach(bucket => {
expect(bucket.value).toEqual(0);
});
});

it('should export the metric after zeroing', async () => {
instance.zero({ method: 'POST' });
const values = getValuesByLabel(
'POST',
(await instance.get()).values,
'method',
);
expect(values).not.toHaveLength(0);
});

it('should not duplicate the metric', async () => {
instance.zero({ method: 'POST' });
instance.observe({ method: 'POST' }, 1);
const values = getValuesByName(
'histogram_labels_count',
(await instance.get()).values,
);
expect(values).toHaveLength(1);
});
});

describe('remove', () => {
beforeEach(() => {
instance = new Histogram({
Expand Down Expand Up @@ -423,6 +465,14 @@ describe('histogram', () => {
})
);
}
function getValuesByName(name, values) {
return values.reduce((acc, val) => {
if (val.metricName === name) {
acc.push(val);
}
return acc;
}, []);
}
function getValueByLeAndLabel(le, key, label, values) {
return values.reduce((acc, val) => {
if (val.labels && val.labels.le === le && val.labels[key] === label) {
Expand Down

0 comments on commit 96f7495

Please sign in to comment.