Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@instana/core

Package Overview
Dependencies
Maintainers
4
Versions
327
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instana/core - npm Package Compare versions

Comparing version
5.4.2
to
5.4.3
+5
-5
package.json
{
"name": "@instana/core",
"version": "5.4.2",
"version": "5.4.3",
"description": "Core library for Instana's Node.js packages",

@@ -64,6 +64,6 @@ "main": "src/index.js",

"@opentelemetry/core": "2.6.1",
"@opentelemetry/instrumentation-fs": "0.33.0",
"@opentelemetry/instrumentation-fs": "0.34.0",
"@opentelemetry/instrumentation-oracledb": "0.39.0",
"@opentelemetry/instrumentation-restify": "0.58.0",
"@opentelemetry/instrumentation-socket.io": "0.60.0",
"@opentelemetry/instrumentation-restify": "0.59.0",
"@opentelemetry/instrumentation-socket.io": "0.61.0",
"@opentelemetry/instrumentation-tedious": "0.28.0",

@@ -84,3 +84,3 @@ "@opentelemetry/sdk-trace-base": "2.3.0",

},
"gitHead": "4deaff4f6c815a40801ceff27649d753ef77e2aa"
"gitHead": "a04f29996f49529d4cfb5749fa964ad030c8ad12"
}

@@ -76,2 +76,4 @@ /*

const transmissionDelayMaxValue = 5000;
/**

@@ -227,2 +229,10 @@ * @typedef {Object} InstanaConfig

// Validate max value for transmissionDelay
if (config.metrics.transmissionDelay > transmissionDelayMaxValue) {
logger.warn(
`The value of config.metrics.transmissionDelay (or INSTANA_METRICS_TRANSMISSION_DELAY) (${config.metrics.transmissionDelay}) exceeds the maximum allowed value of ${transmissionDelayMaxValue}. Assuming the max value ${transmissionDelayMaxValue}.`
);
config.metrics.transmissionDelay = transmissionDelayMaxValue;
}
config.metrics.timeBetweenHealthcheckCalls =

@@ -229,0 +239,0 @@ config.metrics.timeBetweenHealthcheckCalls || defaults.metrics.timeBetweenHealthcheckCalls;

Sorry, the diff of this file is too big to display