Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/aws-fargate/src/preactivate.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ if (nodeJsVersionCheck.isNodeJsTooOld()) {
// eslint-disable-next-line no-console
console.error(
// eslint-disable-next-line max-len
`The package @instana/aws-fargate requires at least Node.js ${nodeJsVersionCheck.minimumNodeJsVersion} but this process is ` +
`running on Node.js ${process.version}. This Fargate container will not be monitored by Instana.` +
'See https://www.ibm.com/docs/en/instana-observability/current?topic=agents-aws-fargate#versioning.'
`The package @instana/aws-fargate requires at least Node.js ${nodeJsVersionCheck.minimumNodeJsVersion} ` +
`but this process is running on Node.js ${process.version}. This Fargate container will ` +
'not be monitored by Instana. For more information, see: ' +
// eslint-disable-next-line max-len
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#breaking-changes-in-nodejs-collector-upgrade'
);
return;
}
Expand Down
8 changes: 5 additions & 3 deletions packages/azure-container-services/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ const { esm, nodeJsVersionCheck } = require('@instana/core/src/util');
if (nodeJsVersionCheck.isNodeJsTooOld()) {
// eslint-disable-next-line no-console
console.error(
// eslint-disable-next-line max-len
`The package @instana/azure-container-services requires at least Node.js ${nodeJsVersionCheck.minimumNodeJsVersion} but this` +
`process is running on Node.js ${process.version}. This azure container service will not be monitored by Instana.`
'The package @instana/azure-container-services requires at least Node.js ' +
`${nodeJsVersionCheck.minimumNodeJsVersion} but this process is running on Node.js ${process.version}. ` +
'This Azure Container Service will not be monitored by Instana. For more information, see: ' +
// eslint-disable-next-line max-len
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#breaking-changes-in-nodejs-collector-upgrade'
);
return;
}
Expand Down
4 changes: 3 additions & 1 deletion packages/collector/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ if (nodeJsVersionCheck.isNodeJsTooOld()) {
console.error(
// eslint-disable-next-line max-len
`The package @instana/collector requires at least Node.js ${nodeJsVersionCheck.minimumNodeJsVersion} but this process is ` +
`running on Node.js ${process.version}. This process will not be monitored by Instana.`
`running on Node.js ${process.version}. This process will not be monitored by Instana. For more information, ` +
// eslint-disable-next-line max-len
'see: https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#breaking-changes-in-nodejs-collector-upgrade'
);

// ESM default exports for TS
Expand Down
9 changes: 5 additions & 4 deletions packages/google-cloud-run/src/preactivate.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ const { esm, nodeJsVersionCheck } = require('@instana/core/src/util');
if (nodeJsVersionCheck.isNodeJsTooOld()) {
// eslint-disable-next-line no-console
console.error(
// eslint-disable-next-line max-len
`The package @instana/google-cloud-run requires at least Node.js ${nodeJsVersionCheck.minimumNodeJsVersion} but this process is ` +
`running on Node.js ${process.version}. This Google Cloud Run service will not be monitored by Instana.` +
'See https://www.ibm.com/docs/en/instana-observability/current?topic=agents-google-cloud-run#versioning.'
`The package @instana/google-cloud-run requires at least Node.js ${nodeJsVersionCheck.minimumNodeJsVersion} ` +
`but this process is running on Node.js ${process.version}. This Google Cloud Run service will not be ` +
'monitored by Instana. For more information, see: ' +
// eslint-disable-next-line max-len
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#breaking-changes-in-nodejs-collector-upgrade'
);
return;
}
Expand Down
5 changes: 4 additions & 1 deletion packages/serverless-collector/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ if (nodeJsVersionCheck.isNodeJsTooOld()) {
console.error(
// eslint-disable-next-line max-len
`The package @instana/serverless-collector requires at least Node.js v${nodeJsVersionCheck.minimumNodeJsVersion} but this ` +
`process is running on Node.js ${process.version}. This process will not be traced by Instana.`
`process is running on Node.js ${process.version}. This process will not be traced by Instana. ` +
'For more information, see: ' +
// eslint-disable-next-line max-len
'https://www.ibm.com/docs/en/instana-observability/current?topic=nodejs-support-information#breaking-changes-in-nodejs-collector-upgrade'
);
return;
}
Expand Down