Skip to content

Commit

Permalink
feat(instrumentation): re-export initialize from import-in-the-middle (
Browse files Browse the repository at this point in the history
…#5123)

Signed-off-by: Connor Pearson <[email protected]>
Co-authored-by: Marc Pichler <[email protected]>
  • Loading branch information
cjpearson and pichlermarc authored Jan 20, 2025
1 parent 56c7522 commit 6c04a41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ All notable changes to experimental packages in this project will be documented

### :rocket: (Enhancement)

* feat(instrumentation): re-export initialize function from import-in-the-middle [#5123](https://github.com/open-telemetry/opentelemetry-js/pull/5123)

### :bug: (Bug Fix)

* fix(exporter-metrics-otlp-http): browser OTLPMetricExporter was not passing config to OTLPMetricExporterBase super class [#5331](https://github.com/open-telemetry/opentelemetry-js/pull/5331) @trentm
Expand Down
3 changes: 2 additions & 1 deletion experimental/packages/opentelemetry-instrumentation/hook.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021 Datadog, Inc.

import {
initialize,
load,
resolve,
getFormat,
getSource,
} from 'import-in-the-middle/hook.mjs';
export { load, resolve, getFormat, getSource };
export { initialize, load, resolve, getFormat, getSource };

0 comments on commit 6c04a41

Please sign in to comment.