Skip to content

Commit

Permalink
Merge branch 'main' into feature/add-optional-selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan authored Sep 12, 2022
2 parents ac5c4d1 + be24d69 commit 22d7455
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ All notable changes to experimental packages in this project will be documented
* `NoopObservableUpDownCounterMetric`
* `NoopUpDownCounterMetric`
* feat(sdk-metrics): align MetricReader with specification and other language implementations [#3225](https://github.com/open-telemetry/opentelemetry-js/pull/3225) @pichlermarc
* chore(sdk-metrics): remove accidental export of the SDK `Meter` class [#3243](https://github.com/open-telemetry/opentelemetry-js/pull/3243) @pichlermarc

### :rocket: (Enhancement)

Expand Down
4 changes: 0 additions & 4 deletions experimental/packages/opentelemetry-sdk-metrics/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ export {
InstrumentType,
} from './InstrumentDescriptor';

export {
Meter,
} from './Meter';

export {
MeterProvider,
MeterProviderOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import * as assert from 'assert';
import { Meter, MeterProvider, InstrumentType, DataPointType } from '../src';
import { MeterProvider, InstrumentType, DataPointType } from '../src';
import {
assertScopeMetrics,
assertMetricData,
Expand All @@ -25,6 +25,7 @@ import {
import { TestMetricReader } from './export/TestMetricReader';
import * as sinon from 'sinon';
import { View } from '../src/view/View';
import { Meter } from '../src/Meter';

describe('MeterProvider', () => {
afterEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import * as assert from 'assert';
import * as sinon from 'sinon';
import {
Meter,
MeterProvider,
DataPointType,
View,
Expand All @@ -29,6 +28,7 @@ import { assertMetricData, defaultInstrumentationScope, defaultResource, sleep }
import { TestDeltaMetricReader, TestMetricReader } from '../export/TestMetricReader';
import { MeterSharedState } from '../../src/state/MeterSharedState';
import { CollectionResult } from '../../src/export/MetricData';
import { Meter } from '../../src/Meter';

describe('MeterSharedState', () => {
afterEach(() => {
Expand Down

0 comments on commit 22d7455

Please sign in to comment.