From 798a4bb2b91b54bbcea21e602bb95080b0e58877 Mon Sep 17 00:00:00 2001 From: JagmohanSharma Date: Tue, 24 Oct 2017 22:48:34 +0530 Subject: [PATCH] https://github.com/spring-cloud/spring-cloud-netflix/issues/2387 (#2388) In order to fix issue with TPS in hystrix-dashboard threadpool section, removing average calculation for propertyValue_metricsRollingStatisticalWindowInMilliseconds. This was done for hystrixCommand.js previously but not for hystrixThreadpool.js. --- .../hystrix/components/hystrixThreadPool/hystrixThreadPool.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js index 9f6a3326..851562bf 100644 --- a/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js +++ b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js @@ -91,9 +91,6 @@ function converAllAvg(data) { convertAvg(data, "propertyValue_queueSizeRejectionThreshold", false); - - // the following will break when it becomes a compound string if the property is dynamically changed - convertAvg(data, "propertyValue_metricsRollingStatisticalWindowInMilliseconds", false); } function convertAvg(data, key, decimal) {