From 8339eef682d56dabddd1b65f66693188f149f557 Mon Sep 17 00:00:00 2001 From: Matt Jacobs Date: Tue, 16 Feb 2016 07:58:18 -0500 Subject: [PATCH] Removed dashboard references to latenctTotal_mean --- build.gradle | 1 - .../main/webapp/components/hystrixCommand/hystrixCommand.js | 3 --- 2 files changed, 4 deletions(-) diff --git a/build.gradle b/build.gradle index 2a4596fe5..aa05b97d3 100644 --- a/build.gradle +++ b/build.gradle @@ -58,7 +58,6 @@ subprojects { publishing { publications { nebula(MavenPublication) { - println("project.name -> " + project.name) if (!project.name.equals("hystrix-dashboard") && !project.name.equals("hystrix-examples-webapp")) { pom.withXml { configurations.compile.resolvedConfiguration.firstLevelModuleDependencies.each { dep -> diff --git a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js index 557047fbf..c08e32d34 100644 --- a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js +++ b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js @@ -115,7 +115,6 @@ function convertAllAvg(data) { convertAvg(data, "errorPercentage", true); convertAvg(data, "latencyExecute_mean", false); - convertAvg(data, "latencyTotal_mean", false); // the following will break when it becomes a compound string if the property is dynamically changed convertAvg(data, "propertyValue_metricsRollingStatisticalWindowInMilliseconds", false); @@ -174,8 +173,6 @@ assertNotNull(data,"currentConcurrentExecutionCount"); assertNotNull(data,"latencyExecute_mean"); assertNotNull(data,"latencyExecute"); - assertNotNull(data,"latencyTotal_mean"); - assertNotNull(data,"latencyTotal"); assertNotNull(data,"propertyValue_circuitBreakerRequestVolumeThreshold"); assertNotNull(data,"propertyValue_circuitBreakerSleepWindowInMilliseconds"); assertNotNull(data,"propertyValue_circuitBreakerErrorThresholdPercentage");