Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add function for setting a Histogram to zero for given labels #386

Merged
merged 1 commit into from
Feb 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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