Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to experimental packages in this project will be documented
### :rocket: (Enhancement)

* feat(http-instrumentation): record exceptions in http instrumentation #3008 @luismiramirez
* feat(opentelemetry-exporter-prometheus): export PrometheusSerializer #3034 @matschaffer

### :bug: (Bug Fix)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
*/

export * from './PrometheusExporter';
export * from './PrometheusSerializer';
export * from './export/types';
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
Histogram,
} from '@opentelemetry/sdk-metrics-base';
import * as sinon from 'sinon';
import { PrometheusSerializer } from '../src/PrometheusSerializer';
import { PrometheusSerializer } from '../src';
import { mockedHrTimeMs, mockHrTime } from './util';

const attributes = {
Expand Down