@instana/shared-metrics 1.137.4 → 1.137.5

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
+ ## [1.137.5](https://github.com/instana/nodejs/compare/v1.137.4...v1.137.5) (2022-01-25)
7
+
8
+ **Note:** Version bump only for package @instana/shared-metrics
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.137.4](https://github.com/instana/nodejs/compare/v1.137.3...v1.137.4) (2022-01-11)
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": "1.137.4",
3
+ "version": "1.137.5",
4
4
  "description": "Internal metrics plug-in package for Node.js monitoring with Instana",
5
5
  "author": {
6
6
  "name": "Bastian Krol",
@@ -10,7 +10,8 @@
10
10
  "main": "src/index.js",
11
11
  "files": [
12
12
  "src",
13
- "addons/linux"
13
+ "addons/linux",
14
+ "CHANGELOG.md"
14
15
  ],
15
16
  "publishConfig": {
16
17
  "access": "public"
@@ -67,7 +68,7 @@
67
68
  },
68
69
  "license": "MIT",
69
70
  "dependencies": {
70
- "@instana/core": "1.137.4",
71
+ "@instana/core": "1.137.5",
71
72
  "detect-libc": "^1.0.3",
72
73
  "event-loop-lag": "^1.4.0",
73
74
  "recursive-copy": "^2.0.13",
@@ -82,5 +83,5 @@
82
83
  "event-loop-stats": "1.3.0",
83
84
  "gcstats.js": "1.0.0"
84
85
  },
85
- "gitHead": "eb8440ec768cebfb83def798da5770b874d00b4c"
86
+ "gitHead": "29e3b4c1a179435f9e796b45a9e639d630470fc4"
86
87
  }
package/src/gc.js CHANGED
@@ -55,7 +55,7 @@ const nativeModuleLoader = require('./util/nativeModuleRetry')({
55
55
  'Could not load gcstats.js. You will not be able to see GC information in Instana for this application. This ' +
56
56
  'typically occurs when native addons could not be installed during module installation (npm install). See the ' +
57
57
  'instructions to learn more about the requirements of the collector: ' +
58
- 'https://www.instana.com/docs/ecosystem/node-js/installation/#native-addons'
58
+ 'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#native-addons'
59
59
  });
60
60
 
61
61
  /** @type {NodeJS.Timeout} */
package/src/libuv.js CHANGED
@@ -22,7 +22,7 @@ const nativeModuleLoader = require('./util/nativeModuleRetry')({
22
22
  'Instana for this application. This typically occurs when native addons could not be ' +
23
23
  'installed during module installation (npm install). See the instructions to learn more ' +
24
24
  'about the requirements of the collector: ' +
25
- 'https://www.instana.com/docs/ecosystem/node-js/installation/#native-addons'
25
+ 'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#native-addons'
26
26
  });
27
27
 
28
28
  nativeModuleLoader.once('loaded', eventLoopStats_ => {