Skip to content

Commit 8339eef

Browse files
author
Matt Jacobs
committed
Removed dashboard references to latenctTotal_mean
1 parent c7027d1 commit 8339eef

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ subprojects {
5858
publishing {
5959
publications {
6060
nebula(MavenPublication) {
61-
println("project.name -> " + project.name)
6261
if (!project.name.equals("hystrix-dashboard") && !project.name.equals("hystrix-examples-webapp")) {
6362
pom.withXml {
6463
configurations.compile.resolvedConfiguration.firstLevelModuleDependencies.each { dep ->

hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js

-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@
115115
function convertAllAvg(data) {
116116
convertAvg(data, "errorPercentage", true);
117117
convertAvg(data, "latencyExecute_mean", false);
118-
convertAvg(data, "latencyTotal_mean", false);
119118

120119
// the following will break when it becomes a compound string if the property is dynamically changed
121120
convertAvg(data, "propertyValue_metricsRollingStatisticalWindowInMilliseconds", false);
@@ -174,8 +173,6 @@
174173
assertNotNull(data,"currentConcurrentExecutionCount");
175174
assertNotNull(data,"latencyExecute_mean");
176175
assertNotNull(data,"latencyExecute");
177-
assertNotNull(data,"latencyTotal_mean");
178-
assertNotNull(data,"latencyTotal");
179176
assertNotNull(data,"propertyValue_circuitBreakerRequestVolumeThreshold");
180177
assertNotNull(data,"propertyValue_circuitBreakerSleepWindowInMilliseconds");
181178
assertNotNull(data,"propertyValue_circuitBreakerErrorThresholdPercentage");

0 commit comments

Comments
 (0)