@instana/shared-metrics 4.28.0 → 4.30.0

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,22 @@
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.30.0](https://github.com/instana/nodejs/compare/v4.29.0...v4.30.0) (2025-11-17)
7
+
8
+ **Note:** Version bump only for package @instana/shared-metrics
9
+
10
+
11
+
12
+
13
+
14
+ # [4.29.0](https://github.com/instana/nodejs/compare/v4.28.0...v4.29.0) (2025-11-07)
15
+
16
+ **Note:** Version bump only for package @instana/shared-metrics
17
+
18
+
19
+
20
+
21
+
6
22
  # [4.28.0](https://github.com/instana/nodejs/compare/v4.27.1...v4.28.0) (2025-11-06)
7
23
 
8
24
  **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": "4.28.0",
3
+ "version": "4.30.0",
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.28.0",
62
+ "@instana/core": "4.30.0",
63
63
  "detect-libc": "^2.1.2",
64
64
  "event-loop-lag": "^1.4.0",
65
65
  "semver": "^7.7.3",
@@ -72,5 +72,5 @@
72
72
  "event-loop-stats": "1.4.1",
73
73
  "gcstats.js": "1.0.0"
74
74
  },
75
- "gitHead": "a57b3c2d3821a7799b772268bc61b0117c18f969"
75
+ "gitHead": "8ffe90605aab49504c222c994a0f4b3142862f90"
76
76
  }
@@ -11,7 +11,8 @@ Object.defineProperty(exports, 'currentPayload', {
11
11
  get: function () {
12
12
  // TODO: _getActiveHandles is deprecated. Replace with getActiveResourcesInfo.
13
13
  // https://nodejs.org/api/deprecations.html#dep0161-process_getactiverequests-and-process_getactivehandles
14
- // Added in v16. Replace in major release.
14
+ // Added in v16.
15
+ // refs https://jsw.ibm.com/browse/INSTA-64277
15
16
  // @ts-ignore
16
17
  return process._getActiveHandles().length;
17
18
  }
@@ -9,6 +9,10 @@ exports.payloadPrefix = 'activeRequests';
9
9
 
10
10
  Object.defineProperty(exports, 'currentPayload', {
11
11
  get: function () {
12
+ // TODO: _getActiveRequests is deprecated. Replace with getActiveResourcesInfo.
13
+ // https://nodejs.org/api/deprecations.html#dep0161-process_getactiverequests-and-process_getactivehandles
14
+ // Added in v16.
15
+ // refs https://jsw.ibm.com/browse/INSTA-64277
12
16
  // @ts-ignore
13
17
  return process._getActiveRequests().length;
14
18
  }