Skip to content

Commit

Permalink
Merge pull request #1099 from mattrjacobs/fix-dashboard-rc3
Browse files Browse the repository at this point in the history
Removed dashboard references to latencyTotal_mean
  • Loading branch information
mattrjacobs committed Feb 16, 2016
2 parents c7027d1 + 8339eef commit 56680f7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit 56680f7

Please sign in to comment.