Skip to content

Commit 32efe97

Browse files
committed
docs: updated outdated ibm public doc links
1 parent 7915ae6 commit 32efe97

File tree

19 files changed

+24
-24
lines changed

19 files changed

+24
-24
lines changed

API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# API
22

3-
This document has moved [here](https://www.ibm.com/docs/de/obi/current?topic=nodejs-instana-api).
3+
This document has moved [here](https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-instana-api).

CONFIGURATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Configuration
22

3-
This document has moved [here](https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-configuration).
3+
This document has moved [here](https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-configuration).

dockerfile-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples Dockerfile
22
===================
33

4-
Dockerizing your Node.js application is a thing. Since the Instana Node.js collector uses some native addons (see [readme](https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#native-add-ons)), it might be required to add additional operating system packages to your Docker image. This directory contains a few example Dockerfiles to test Docker builds with various base images and configurations.
4+
Dockerizing your Node.js application is a thing. Since the Instana Node.js collector uses some native addons (see [readme](https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#native-add-ons)), it might be required to add additional operating system packages to your Docker image. This directory contains a few example Dockerfiles to test Docker builds with various base images and configurations.
55

66
This is probably relevant for you
77
- dockerize your Node.js application

packages/aws-fargate/images/instana-aws-fargate/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
#######################################
55

66
cd /instana
7-
npm rebuild || echo "Warning: Rebuilding native add-ons for @instana/fargate failed. Monitoring the Fargate tasks will work nonetheless, but you will miss some Node.js metrics (GC metrics, event loop metrics, ...). See https://www.ibm.com/docs/de/obi/current?topic=agents-monitoring-aws-fargate#build-dependencies-and-native-add-ons for details."
7+
npm rebuild || echo "Warning: Rebuilding native add-ons for @instana/aws-fargate failed. Monitoring the Fargate tasks will work nonetheless, but you will miss some Node.js metrics (GC metrics, event loop metrics, ...). See https://www.ibm.com/docs/en/instana-observability/current?topic=agents-aws-fargate#build-dependencies-and-native-add-ons for details."
88

packages/collector/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# API
22

3-
This document has moved [here](https://www.ibm.com/docs/de/obi/current?topic=nodejs-instana-api).
3+
This document has moved [here](https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-instana-api).

packages/collector/CONFIGURATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Configuration
22

3-
This document has moved [here](https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-configuration).
3+
This document has moved [here](https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-configuration).

packages/collector/src/announceCycle/agentready.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if (agentOpts.autoProfile) {
5555
'during module installation (npm install/yarn) or when npm install --no-optional or yarn --ignore-optional ' +
5656
'have been used to install dependencies. See the instructions to learn more about the requirements of the ' +
5757
'collector: ' +
58-
'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#native-add-ons'
58+
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#native-add-ons'
5959
);
6060

6161
fireMonitoringEvent();

packages/collector/src/bin/instrument-edgemicro-cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// edgemicro start -o $org -e $env -k $key -s $secret
1616
//
1717
// Thus, there is no user controlled code when that Node.js process is starting up, and in turn our usual installation
18-
// documented at https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation can not be performed (in particular, there
18+
// documented at https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#installing-the-collector can not be performed (in particular, there
1919
// is no user controlled code to put the require('@instana/collector')(); into.
2020
//
2121
// The purpose of this executable is to fill this gap. It needs to be called after the edgemicro package has been

packages/collector/src/immediate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const agentOpts = require('./agent/opts');
2323
// This file can be used with NODE_OPTIONS or `node --require` to instrument a Node.js app with Instana without
2424
// modifying the source code. See
2525
// eslint-disable-next-line max-len
26-
// https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#installation-without-modifying-the-source-code
26+
// https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#activating-the-collector
2727

2828
const isExcludedFromInstrumentation = coreUtil.excludedFromInstrumentation && coreUtil.excludedFromInstrumentation();
2929

packages/collector/src/util/initializedTooLate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ exports.check = function check() {
2727
'It seems you have initialized the @instana/collector package too late. Please check our documentation on ' +
2828
'that, in particular ' +
2929
// eslint-disable-next-line max-len
30-
'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#installing-the-nodejs-collector-package and ' +
30+
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#installing-the-collector and ' +
3131
// eslint-disable-next-line max-len
32-
'https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#common-pitfalls. Tracing might only work ' +
32+
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-troubleshooting. Tracing might only work ' +
3333
'partially with this setup, that is, some calls will not be captured.'
3434
);
3535
warningHasBeenLogged = true;

packages/collector/test/apps/babel-typescript/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
// import morgan from 'morgan';
4040
//
4141
// // The following statement is optional; it is only required if you want to use
42-
// // Instana's Node.js API (https://www.ibm.com/docs/de/obi/current?topic=nodejs-instana-api):
42+
// // Instana's Node.js API (https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-instana-api):
4343
// @ts-ignore (in case you are using TypeScript, to avoid 'Could not find a declaration for '@instana/collector')
4444
// import instana from '@instana/collector';
4545
//
@@ -61,7 +61,7 @@ import express from 'express';
6161
import morgan from 'morgan';
6262

6363
// The following statement is optional; it is only required if you want to use
64-
// Instana's Node.js API (https://www.ibm.com/docs/de/obi/current?topic=nodejs-instana-api):
64+
// Instana's Node.js API (https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-instana-api):
6565
// @ts-ignore
6666
import instana from '@instana/collector';
6767

packages/core/src/tracing/instrumentation/protocols/http2Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function shimEmit(realEmit) {
136136
// headers, we add the new trace ID to the incoming request so a customer's app can render it reliably into the
137137
// EUM snippet, see
138138
// eslint-disable-next-line max-len
139-
// https://www.ibm.com/docs/de/obi/current?topic=websites-backend-correlation#retrieve-the-backend-trace-id-in-nodejs
139+
// https://www.ibm.com/docs/en/instana-observability/current?topic=websites-backend-correlation#retrieve-the-backend-trace-id-in-nodejs
140140
headers['x-instana-t'] = span.t;
141141
}
142142

packages/core/src/tracing/instrumentation/protocols/httpServer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function shimEmit(realEmit) {
109109
// headers, we add the new trace ID to the incoming request so a customer's app can render it reliably into the
110110
// EUM snippet, see
111111
// eslint-disable-next-line max-len
112-
// https://www.ibm.com/docs/de/obi/current?topic=websites-backend-correlation#retrieve-the-backend-trace-id-in-nodejs
112+
// https://www.ibm.com/docs/en/instana-observability/current?topic=websites-backend-correlation#retrieve-the-backend-trace-id-in-nodejs
113113
req.headers['x-instana-t'] = span.t;
114114
}
115115

packages/core/src/tracing/tracingUtil.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ exports.readAttribCaseInsensitive = function readAttribCaseInsensitive(object, k
234234
*
235235
* The situation is different when we are loaded via "--require" from a global installation -- this is the norm for
236236
* @instana/aws-fargate, @instana/google-cloud-run, the Kubernetes autotrace webhook
237-
* (https://www.ibm.com/docs/de/obi/current?topic=kubernetes-instana-autotrace-webhook) or when using the global
238-
* installation pattern for @instana/collector that does not require modifying the source code
239-
* (see * https://www.ibm.com/docs/de/obi/current?topic=nodejs-collector-installation#global-installation).
240-
*
237+
* (https://www.ibm.com/docs/en/instana-observability/current?topic=kubernetes-instana-autotrace-webhook) or when
238+
* using the global installation pattern for @instana/collector that does not require modifying the source code see(
239+
* https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-collector-installation#installing-the-
240+
* collector-globally).
241241
* In these scenarios, the module load path list does not include the application's node_module folder. Thus we need to
242242
* be a bit more clever when requiring a module from the application's dependencies. We solve this by constructing the
243243
* file system path of the desired module by using a known path from a module of the same package and the relative path

packages/core/src/util/normalizeConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ function normalizeAutomaticTracingEnabled(config) {
313313
if (!supportedTracingVersion(process.versions.node)) {
314314
logger.warn(
315315
'Not enabling automatic tracing, this is an unsupported version of Node.js. ' +
316-
'See: https://www.ibm.com/docs/de/obi/current?topic=technologies-monitoring-nodejs#supported-nodejs-versions'
316+
'See: https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#supported-nodejs-versions'
317317
);
318318
config.tracing.automaticTracingEnabled = false;
319319
return;

packages/google-cloud-run/images/instana-google-cloud-run/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# (c) Copyright Instana Inc. and contributors 2020
44
#######################################
55
cd /instana
6-
npm rebuild || echo "Warning: Rebuilding native add-ons for @instana/google-cloud-run failed. Monitoring the Cloud Run service revision instance will work nonetheless, but you will miss some Node.js metrics (GC metrics, event loop metrics, ...). See https://www.ibm.com/docs/de/obi/current?topic=agents-monitoring-google-cloud-run#build-dependencies-and-native-add-ons for details."
6+
npm rebuild || echo "Warning: Rebuilding native add-ons for @instana/google-cloud-run failed. Monitoring the Cloud Run service revision instance will work nonetheless, but you will miss some Node.js metrics (GC metrics, event loop metrics, ...). See https://www.ibm.com/docs/en/instana-observability/current?topic=agents-google-cloud-run#build-dependencies-and-native-add-ons for details."

packages/opentelemetry-exporter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ An [OpenTelemetry exporter](https://opentelemetry.io/docs/js/exporters/) to Inst
88

99
## Instana and OpenTelemetry Versions
1010

11-
Even though the [Instana Node.js SDK supports several versions of Node.js](https://www.ibm.com/docs/de/obi/current?topic=technologies-monitoring-nodejs#supported-nodejs-versions),
11+
Even though the [Instana Node.js SDK supports several versions of Node.js](https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#supported-nodejs-versions),
1212
users of the Instana Exporter must take into consideration the
1313
[versions supported by the OpenTelemetry instrumentator](https://github.com/open-telemetry/opentelemetry-js#supported-runtimes).
1414

packages/shared-metrics/src/gc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const nativeModuleLoader = require('./util/nativeModuleRetry')({
5656
'typically occurs when native addons could not be built during module installation (npm install/yarn) or when ' +
5757
'npm install --no-optional or yarn --ignore-optional have been used to install dependencies. See the ' +
5858
'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'
6060
});
6161

6262
/** @type {NodeJS.Timeout} */

packages/shared-metrics/src/libuv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const nativeModuleLoader = require('./util/nativeModuleRetry')({
2222
'application. This typically occurs when native addons could not be built during module installation ' +
2323
'(npm install/yarn) or when npm install --no-optional or yarn --ignore-optional have been used to install ' +
2424
'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'
2626
});
2727

2828
nativeModuleLoader.once('loaded', eventLoopStats_ => {

0 commit comments

Comments
 (0)