@instana/shared-metrics 4.5.3 → 4.6.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,14 @@
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
+ ## [4.6.1](https://github.com/instana/nodejs/compare/v4.6.0...v4.6.1) (2025-01-29)
7
+
8
+ **Note:** Version bump only for package @instana/shared-metrics
9
+
10
+ # [4.6.0](https://github.com/instana/nodejs/compare/v4.5.3...v4.6.0) (2025-01-18)
11
+
12
+ **Note:** Version bump only for package @instana/shared-metrics
13
+
6
14
  ## [4.5.3](https://github.com/instana/nodejs/compare/v4.5.2...v4.5.3) (2025-01-14)
7
15
 
8
16
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instana/shared-metrics",
3
- "version": "4.5.3",
3
+ "version": "4.6.1",
4
4
  "description": "Internal metrics plug-in package for Node.js monitoring with Instana",
5
5
  "author": {
6
6
  "name": "Bastian Krol",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "license": "MIT",
61
61
  "dependencies": {
62
- "@instana/core": "4.5.3",
62
+ "@instana/core": "4.6.1",
63
63
  "detect-libc": "^2.0.2",
64
64
  "event-loop-lag": "^1.4.0",
65
65
  "semver": "^7.5.4",
@@ -74,5 +74,5 @@
74
74
  "event-loop-stats": "1.4.1",
75
75
  "gcstats.js": "1.0.0"
76
76
  },
77
- "gitHead": "cac14d4c9f5efa60edee223d45d6220a79336508"
77
+ "gitHead": "62464af6ca87e5e86de458e16f252d821e993900"
78
78
  }
package/src/gc.js CHANGED
@@ -56,7 +56,7 @@ const nativeModuleLoader = require('./util/nativeModuleRetry')({
56
56
  'typically occurs when native addons could not be built during module installation (npm install/yarn) or when ' +
57
57
  'npm install --no-optional or yarn --ignore-optional have been used to install dependencies. See the ' +
58
58
  'instructions to learn more about the requirements of the collector: ' +
59
- 'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#native-add-ons'
59
+ 'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#native-add-ons'
60
60
  });
61
61
 
62
62
  /** @type {NodeJS.Timeout} */
package/src/libuv.js CHANGED
@@ -22,7 +22,7 @@ const nativeModuleLoader = require('./util/nativeModuleRetry')({
22
22
  'application. This typically occurs when native addons could not be built during module installation ' +
23
23
  '(npm install/yarn) or when npm install --no-optional or yarn --ignore-optional have been used to install ' +
24
24
  'dependencies. See the instructions to learn more about the requirements of the collector: ' +
25
- 'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#native-add-ons'
25
+ 'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#native-add-ons'
26
26
  });
27
27
 
28
28
  nativeModuleLoader.once('loaded', eventLoopStats_ => {