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

test(sdk-metrics-base): test metric instrument interfaces #2743

Merged
merged 7 commits into from
Feb 10, 2022
Merged
Show file tree
Hide file tree
Changes from 6 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,391 @@
/*
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import * as assert from 'assert';
import * as sinon from 'sinon';
import { InstrumentationLibrary } from '@opentelemetry/core';
import { Resource } from '@opentelemetry/resources';
import { AggregationTemporality, InstrumentDescriptor, MeterProvider, MetricReader, PointData, PointDataType } from '../src';
import { TestMetricReader } from './export/TestMetricReader';
import { assertMetricData, assertPointData, commonValues, commonAttributes, defaultResource, defaultInstrumentationLibrary } from './util';
import { Histogram } from '../src/aggregator/types';
import { ObservableResult } from '@opentelemetry/api-metrics-wip';

describe('Instruments', () => {
describe('Counter', () => {
it('should add common values and attributes without exceptions', () => {
const { meter } = setup();
const counter = meter.createCounter('test');
dyladan marked this conversation as resolved.
Show resolved Hide resolved

for (const values of commonValues) {
for (const attributes of commonAttributes) {
counter.add(values, attributes);
}
}
});

it('should add valid values', async () => {
const { meter, cumulativeReader } = setup();
const counter = meter.createCounter('test');

counter.add(1);
counter.add(1);
counter.add(1, { foo: 'bar' });
await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 2,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});

// add negative values should not be observable.
counter.add(-1);
await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 2,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
});
});

describe('UpDownCounter', () => {
it('should add common values and attributes without exceptions', () => {
const { meter } = setup();
const upDownCounter = meter.createUpDownCounter('test');

for (const values of commonValues) {
for (const attributes of commonAttributes) {
upDownCounter.add(values, attributes);
}
}
});

it('should add values', async () => {
const { meter, deltaReader } = setup();
const upDownCounter = meter.createUpDownCounter('test');

upDownCounter.add(3);
upDownCounter.add(-1);
upDownCounter.add(4, { foo: 'bar' });
await validateExport(deltaReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 2,
},
{
attributes: { foo: 'bar' },
point: 4,
}
],
});
});
});

describe('Histogram', () => {
it('should record common values and attributes without exceptions', () => {
const { meter } = setup();
const histogram = meter.createHistogram('test');

for (const values of commonValues) {
for (const attributes of commonAttributes) {

histogram.record(values, attributes);
}
}
});

it('should record values', async () => {
const { meter, deltaReader } = setup();
const histogram = meter.createHistogram('test');

histogram.record(10);
histogram.record(-1);
histogram.record(100, { foo: 'bar' });
await validateExport(deltaReader, {
pointDataType: PointDataType.HISTOGRAM,
pointData: [
{
attributes: {},
point: {
buckets: {
boundaries: [0, 5, 10, 25, 50, 75, 100, 250, 500, 1000],
counts: [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0],
},
count: 2,
sum: 9,
},
},
{
attributes: { foo: 'bar' },
point: {
buckets: {
boundaries: [0, 5, 10, 25, 50, 75, 100, 250, 500, 1000],
counts: [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0],
},
count: 1,
sum: 100,
},
},
],
});
});
});

describe('ObservableCounter', () => {
it('should observe common values and attributes without exceptions', async () => {
const { meter, deltaReader } = setup();
const callback = sinon.spy((observableResult: ObservableResult) => {
for (const values of commonValues) {
for (const attributes of commonAttributes) {
observableResult.observe(values, attributes);
}
}
});
meter.createObservableCounter('test', callback);

await deltaReader.collect();
assert.strictEqual(callback.callCount, 1);
});

it('should observe values', async () => {
const { meter, cumulativeReader } = setup();
let callCount = 0;
meter.createObservableCounter('test', observableResult => {
observableResult.observe(++callCount);
observableResult.observe(1, { foo: 'bar' });
});

await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 1,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 2,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
});
});

describe('ObservableUpDownCounter', () => {
it('should observe common values and attributes without exceptions', async () => {
const { meter, deltaReader } = setup();
const callback = sinon.spy((observableResult: ObservableResult) => {
for (const values of commonValues) {
for (const attributes of commonAttributes) {
observableResult.observe(values, attributes);
}
}
});
meter.createObservableUpDownCounter('test', callback);

await deltaReader.collect();
assert.strictEqual(callback.callCount, 1);
});

it('should observe values', async () => {
const { meter, cumulativeReader } = setup();
let callCount = 0;
meter.createObservableUpDownCounter('test', observableResult => {
observableResult.observe(++callCount);
observableResult.observe(1, { foo: 'bar' });
});

await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 1,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 2,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
});
});

describe('ObservableGauge', () => {
it('should observe common values and attributes without exceptions', async () => {
const { meter, deltaReader } = setup();
const callback = sinon.spy((observableResult: ObservableResult) => {
for (const values of commonValues) {
for (const attributes of commonAttributes) {
observableResult.observe(values, attributes);
}
}
});
meter.createObservableGauge('test', callback);

await deltaReader.collect();
assert.strictEqual(callback.callCount, 1);
});

it('should observe values', async () => {
const { meter, cumulativeReader } = setup();
let num = 0;
meter.createObservableGauge('test', observableResult => {
num += 10;
if (num === 30) {
observableResult.observe(-1);
} else {
observableResult.observe(num);
}
observableResult.observe(1, { foo: 'bar' });
});

await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 10,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: 20,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
await validateExport(cumulativeReader, {
pointDataType: PointDataType.SINGULAR,
pointData: [
{
attributes: {},
point: -1,
},
{
attributes: { foo: 'bar' },
point: 1,
},
],
});
});
});
});

function setup() {
const meterProvider = new MeterProvider({ resource: defaultResource });
const meter = meterProvider.getMeter(defaultInstrumentationLibrary.name, defaultInstrumentationLibrary.version, {
schemaUrl: defaultInstrumentationLibrary.schemaUrl,
});
const deltaReader = new TestMetricReader(AggregationTemporality.DELTA);
meterProvider.addMetricReader(deltaReader);
const cumulativeReader = new TestMetricReader(AggregationTemporality.CUMULATIVE);
meterProvider.addMetricReader(cumulativeReader);

return {
meterProvider,
meter,
deltaReader,
cumulativeReader,
};
}

interface ValidateMetricData {
resource?: Resource;
instrumentationLibrary?: InstrumentationLibrary;
instrumentDescriptor?: InstrumentDescriptor;
pointDataType: PointDataType,
pointData: Partial<PointData<number | Partial<Histogram>>>[];
}

async function validateExport(deltaReader: MetricReader, expected: ValidateMetricData) {
const metricData = await deltaReader.collect();
const metric = metricData[0];

assertMetricData(
metric,
expected.pointDataType,
expected.instrumentDescriptor ?? null,
expected.instrumentationLibrary,
expected.resource
);
assert.strictEqual(metric.pointData.length, expected.pointData.length);

for (let idx = 0; idx < metric.pointData.length; idx++) {
const expectedPointData = expected.pointData[idx];
assertPointData(
metric.pointData[idx],
expectedPointData.attributes ?? {},
expectedPointData.point as any,
expectedPointData.startTime,
expectedPointData.endTime
);
}
}
Loading