@cubejs-backend/query-orchestrator
Advanced tools
Comparing version 0.18.11 to 0.18.12
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.18.12](https://github.com/cube-js/cube.js/compare/v0.18.11...v0.18.12) (2020-03-19) | ||
### Features | ||
* Add duration to error logging ([59a4255](https://github.com/cube-js/cube.js/commit/59a4255)) | ||
## [0.18.11](https://github.com/cube-js/cube.js/compare/v0.18.10...v0.18.11) (2020-03-18) | ||
@@ -8,0 +19,0 @@ |
@@ -268,6 +268,9 @@ const R = require('ramda'); | ||
processingId, | ||
queueSize, | ||
duration: ((new Date()).getTime() - startQueryTime), | ||
queryKey: query.queryKey, | ||
error: (e.stack || e).toString(), | ||
queuePrefix: this.redisQueuePrefix, | ||
requestId: query.requestId | ||
requestId: query.requestId, | ||
timeInQueue, | ||
error: (e.stack || e).toString() | ||
}); | ||
@@ -274,0 +277,0 @@ if (e instanceof TimeoutError) { |
@@ -5,3 +5,3 @@ { | ||
"author": "Statsbot, Inc.", | ||
"version": "0.18.11", | ||
"version": "0.18.12", | ||
"repository": { | ||
@@ -29,3 +29,3 @@ "type": "git", | ||
"license": "Apache-2.0", | ||
"gitHead": "b3a0a34243ba3206999162bd232469b32b9bcf9d" | ||
"gitHead": "1d489b96735a8221783384e5af99cf0af27bc9ac" | ||
} |
161977
2320