@instana/metrics-util
Advanced tools
Comparing version 1.109.0 to 1.110.0
{ | ||
"name": "@instana/metrics-util", | ||
"version": "1.109.0", | ||
"version": "1.110.0", | ||
"description": "Internal utility library for Instana metric collection", | ||
@@ -28,3 +28,3 @@ "author": { | ||
"test": "npm run test:mocha", | ||
"test:mocha": "mocha --reporter spec $(find test -iname '*test.js')", | ||
"test:mocha": "mocha --sort --reporter mocha-multi --reporter-options spec=-,xunit=../../test-results/metrics-util/results.xml $(find test -iname '*test.js')", | ||
"test:debug": "WITH_STDOUT=true npm run test:mocha", | ||
@@ -55,5 +55,5 @@ "lint": "eslint src test", | ||
"dependencies": { | ||
"@instana/core": "^1.109.0", | ||
"@instana/serverless": "^1.109.0", | ||
"@instana/shared-metrics": "^1.109.0", | ||
"@instana/core": "^1.110.0", | ||
"@instana/serverless": "^1.110.0", | ||
"@instana/shared-metrics": "^1.110.0", | ||
"node-fetch": "^2.6.1" | ||
@@ -71,3 +71,3 @@ }, | ||
}, | ||
"gitHead": "dca1dfe7919bb91a3b66d6fbe085c71e952ea3ed" | ||
"gitHead": "97841589f31c2e56ab15c649f92e55fee9ba7229" | ||
} |
@@ -100,4 +100,8 @@ 'use strict'; | ||
canSkipRecompilation() { | ||
// subclassed can override this to disable recompilation skipping (important for sources for derived entities) | ||
return true; | ||
// See getUncompressedData for details on skipping recompilation. | ||
// Subclassed can override this to disable recompilation skipping completely (important for sources for derived | ||
// entities). The default behaviour is: Skipping recompilation is allowed if there is no or an empty | ||
// compressionExcludeList. This is what most processors should do. | ||
return !this.compressionExcludeList || this.compressionExcludeList.length === 0; | ||
} | ||
@@ -104,0 +108,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18920
482
Updated@instana/core@^1.110.0
Updated@instana/serverless@^1.110.0