@instana/shared-metrics 2.13.2 → 2.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.14.1](https://github.com/instana/nodejs/compare/v2.14.0...v2.14.1) (2023-01-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **collector:** fixed package.json not being found when app is ESM ([#678](https://github.com/instana/nodejs/issues/678)) ([0dbd0a2](https://github.com/instana/nodejs/commit/0dbd0a223344dabc49c559ba92e383b2356d5323))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.14.0](https://github.com/instana/nodejs/compare/v2.13.2...v2.14.0) (2023-01-02)
18
+
19
+ **Note:** Version bump only for package @instana/shared-metrics
20
+
21
+
22
+
23
+
24
+
6
25
  ## [2.13.2](https://github.com/instana/nodejs/compare/v2.13.1...v2.13.2) (2022-12-14)
7
26
 
8
27
  **Note:** Version bump only for package @instana/shared-metrics
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instana/shared-metrics",
3
- "version": "2.13.2",
3
+ "version": "2.14.1",
4
4
  "description": "Internal metrics plug-in package for Node.js monitoring with Instana",
5
5
  "author": {
6
6
  "name": "Bastian Krol",
@@ -67,7 +67,7 @@
67
67
  },
68
68
  "license": "MIT",
69
69
  "dependencies": {
70
- "@instana/core": "2.13.2",
70
+ "@instana/core": "2.14.1",
71
71
  "detect-libc": "^1.0.3",
72
72
  "event-loop-lag": "^1.4.0",
73
73
  "recursive-copy": "^2.0.13",
@@ -82,5 +82,5 @@
82
82
  "event-loop-stats": "1.4.1",
83
83
  "gcstats.js": "1.0.0"
84
84
  },
85
- "gitHead": "a46b81f962b60f61a226c92da9cd2cb3d55e27df"
85
+ "gitHead": "4044eba96b67343b4f03a515887ab677f70ae408"
86
86
  }
@@ -47,7 +47,7 @@ exports.activate = function activate() {
47
47
  if (err) {
48
48
  return logger.warn('Failed to determine main package.json. Reason: %s %s ', err.message, err.stack);
49
49
  } else if (!mainPackageJsonPath && attempts < exports.MAX_ATTEMPTS) {
50
- logger.debug('Main package.json could not be found. Will try again later.');
50
+ logger.debug(`Main package.json could not be found at ${mainPackageJsonPath}. Will try again later.`);
51
51
  setTimeout(exports.activate, DELAY).unref();
52
52
  return;
53
53
  } else if (!mainPackageJsonPath) {