@instana/shared-metrics 4.29.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 +8 -0
- package/package.json +3 -3
- package/src/activeHandles.js +2 -1
- package/src/activeRequests.js +4 -0
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.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
|
+
|
|
6
14
|
# [4.29.0](https://github.com/instana/nodejs/compare/v4.28.0...v4.29.0) (2025-11-07)
|
|
7
15
|
|
|
8
16
|
**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.
|
|
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.
|
|
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": "
|
|
75
|
+
"gitHead": "8ffe90605aab49504c222c994a0f4b3142862f90"
|
|
76
76
|
}
|
package/src/activeHandles.js
CHANGED
|
@@ -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.
|
|
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
|
}
|
package/src/activeRequests.js
CHANGED
|
@@ -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
|
}
|