Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@instana/core

Package Overview
Dependencies
Maintainers
3
Versions
261
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 1.106.3 to 1.106.4

4

package.json
{
"name": "@instana/core",
"version": "1.106.3",
"version": "1.106.4",
"description": "Core library for Instana's Node.js packages",

@@ -136,3 +136,3 @@ "main": "src/index.js",

},
"gitHead": "b685e5af18538844266899be3628fc7fc6a6264d"
"gitHead": "685c43c348db337c09b7ed03010710cd8454240f"
}

@@ -55,2 +55,6 @@ 'use strict';

if (serviceName != null && !parentSpan) {
span.data.service = serviceName;
}
// If the client code has specified a trace ID/parent ID, use the provided IDs.

@@ -246,3 +250,3 @@ if (traceId) {

this.stack = [];
this.data = serviceName != null ? { service: serviceName } : {};
this.data = {};

@@ -249,0 +253,0 @@ // properties used within the collector that should not be transmitted to the agent/backend

@@ -99,4 +99,4 @@ 'use strict';

if (processedHeaders.correlationType && processedHeaders.correlationId) {
span.data.correlationType = processedHeaders.correlationType;
span.data.correlationId = processedHeaders.correlationId;
span.crtp = processedHeaders.correlationType;
span.crid = processedHeaders.correlationId;
}

@@ -103,0 +103,0 @@ if (processedHeaders.foreignParent) {

@@ -74,4 +74,4 @@ 'use strict';

if (headers.correlationType && headers.correlationId) {
span.data.correlationType = headers.correlationType;
span.data.correlationId = headers.correlationId;
span.crtp = headers.correlationType;
span.crid = headers.correlationId;
}

@@ -78,0 +78,0 @@ if (headers.foreignParent) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc