@instana/serverless
Advanced tools
+11
-0
@@ -6,2 +6,13 @@ # Change Log | ||
| ## [4.21.2](https://github.com/instana/nodejs/compare/v4.21.1...v4.21.2) (2025-08-05) | ||
| ### Bug Fixes | ||
| * **aws-lambda:** improved heartbeat timeout ([#1912](https://github.com/instana/nodejs/issues/1912)) ([08290bb](https://github.com/instana/nodejs/commit/08290bbe83772c3c49bb4cb4cdab0a745c7b6455)) | ||
| ## [4.21.1](https://github.com/instana/nodejs/compare/v4.21.0...v4.21.1) (2025-08-05) | ||
@@ -8,0 +19,0 @@ |
+3
-3
| { | ||
| "name": "@instana/serverless", | ||
| "version": "4.21.1", | ||
| "version": "4.21.2", | ||
| "description": "Internal utility package for serverless Node.js tracing and monitoring with Instana", | ||
@@ -68,6 +68,6 @@ "author": { | ||
| "dependencies": { | ||
| "@instana/core": "4.21.1", | ||
| "@instana/core": "4.21.2", | ||
| "https-proxy-agent": "^7.0.2" | ||
| }, | ||
| "gitHead": "793031707b7002af0487c2afd6caef7abfe9b2f2" | ||
| "gitHead": "eb915807798a18a1fb0d318ec4461d431d0c87b9" | ||
| } |
@@ -20,3 +20,4 @@ /* | ||
| // NOTE: The heartbeat is usually really, really fast (<30ms). | ||
| const layerExtensionHeartbeatTimeout = 100; | ||
| // But we have seen in some cases that it can take up to 500ms. | ||
| const layerExtensionHeartbeatTimeout = 500; | ||
@@ -203,3 +204,3 @@ // NOTE: The initial heartbeat can be very slow when the Lambda is in cold start. | ||
| const duration = endTime - startTime; | ||
| logger.debug(`[${requestId}] Took ${duration}ms to receive response from extension`); | ||
| logger.debug(`[${requestId}] Took ${duration}ms to receive response from extension for the heartbeat.`); | ||
@@ -206,0 +207,0 @@ heartbeatIsActive = false; |
Network access
Supply chain riskThis module accesses the network.
Found 3 instances in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 7 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 3 instances in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 7 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
67126
0.59%874
0.11%+ Added
- Removed
Updated