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

chore: fix histogram type documentation #1427

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 6 additions & 8 deletions packages/opentelemetry-metrics/src/export/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,19 @@ export interface Distribution {

export interface Histogram {
/**
* Buckets are implemented using two different array:
* - boundaries contains every boundary (which are upper boundary for each slice)
* - counts contains count of event for each slice
* Buckets are implemented using two different arrays:
* - boundaries: contains every finite bucket boundary, which are inclusive lower bounds
* - counts contains event counts for each slice
TigerHe7 marked this conversation as resolved.
Show resolved Hide resolved
*
* Note that we'll always have n+1 (where n is the number of boundaries) slice
* because we need to count event that are above the highest boundary. This is the
* reason why it's not implement using array of object, because the last slice
* dont have any boundary.
* Note that we'll always have n+1 buckets, where n is the number of boundaries.
* Thsi is because we need to count events that are below the lowest boundary.
TigerHe7 marked this conversation as resolved.
Show resolved Hide resolved
*
* Example if we measure the values: [5, 30, 5, 40, 5, 15, 15, 15, 25]
* with the boundaries [ 10, 20, 30 ], we will have the following state:
*
* buckets: {
* boundaries: [10, 20, 30],
* counts: [3, 3, 2, 1],
* counts: [3, 3, 1, 2],
* }
*/
buckets: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,17 @@ describe('HistogramAggregator', () => {
assert.equal(point.buckets.counts[1], 0);
assert.equal(point.buckets.counts[2], 1);
});

it('should update the third bucket since boundaries are inclusive lower bounds', () => {
const aggregator = new HistogramAggregator([100, 200]);
aggregator.update(200);
const point = aggregator.toPoint().value as Histogram;
assert.equal(point.count, 1);
assert.equal(point.sum, 200);
assert.equal(point.buckets.counts[0], 0);
assert.equal(point.buckets.counts[1], 0);
assert.equal(point.buckets.counts[2], 1);
});
});

describe('.count', () => {
Expand Down