From 3c280403d7e600d801294bbbdb490a2f44b4485b Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 2 Sep 2014 19:36:20 +0100 Subject: [PATCH] Make hystrix dashboard embeddable finally --- pom.xml | 7 +- .../{annotations => }/EnableHystrix.java | 3 +- .../netflix/hystrix/HystrixConfiguration.java | 1 - .../hystrix/HystrixConfigurationSelector.java | 1 - .../pom.xml | 29 +- .../dashboard}/EnableHystrixDashboard.java | 3 +- .../HystrixDashboardConfiguration.java | 0 .../hystrixCommand/hystrixCommand.css | 0 .../hystrixCommand/hystrixCommand.js | 0 .../magnifying-glass-icon-20.png | Bin .../hystrixCommand/magnifying-glass-icon.png | Bin .../templates/hystrixCircuit.html | 0 .../templates/hystrixCircuitContainer.html | 0 .../templates/hystrixCircuitProperties.html | 0 .../hystrixThreadPool/hystrixThreadPool.css | 0 .../hystrixThreadPool/hystrixThreadPool.js | 0 .../templates/hystrixThreadPool.html | 0 .../templates/hystrixThreadPoolContainer.html | 0 .../resources/static/hystrix/css/global.css | 0 .../resources/static/hystrix/css/resets.css | 0 .../hystrix/css/simplegrid/1236_grid.css | 0 .../hystrix/css/simplegrid/720_grid.css | 0 .../hystrix/css/simplegrid/986_grid.css | 0 .../static/hystrix/css/simplegrid/LICENSE.txt | 0 .../static/hystrix/css/simplegrid/README.txt | 0 .../css/simplegrid/percentage_grid.css | 0 .../main/resources/static/hystrix/index.html | 0 .../static/hystrix/js/jquery.tinysort.min.js | 0 .../main/resources/static/hystrix/js/tmpl.js | 0 .../static/hystrix/monitor/monitor.css | 0 .../static/hystrix/monitor/monitor.html | 0 .../hystrix/HystrixDashboardApplication.java | 37 - .../hystrix/stream/MockStreamServlet.java | 107 --- .../main/resources/META-INF/spring.factories | 8 - .../src/main/resources/application.yml | 39 - .../src/main/resources/bootstrap.yml | 6 - .../netflix/hystrix/stream/hystrix.stream | 809 ------------------ .../src/main/resources/log4j.properties | 6 - .../hystrixCommand/hystrixCommand.css | 196 ----- .../hystrixCommand/hystrixCommand.js | 536 ------------ .../magnifying-glass-icon-20.png | Bin 888 -> 0 bytes .../hystrixCommand/magnifying-glass-icon.png | Bin 19105 -> 0 bytes .../templates/hystrixCircuit.html | 73 -- .../templates/hystrixCircuitContainer.html | 40 - .../templates/hystrixCircuitProperties.html | 6 - .../hystrixThreadPool/hystrixThreadPool.css | 141 --- .../hystrixThreadPool/hystrixThreadPool.js | 346 -------- .../templates/hystrixThreadPool.html | 33 - .../templates/hystrixThreadPoolContainer.html | 34 - .../src/main/resources/static/css/global.css | 71 -- .../src/main/resources/static/css/resets.css | 102 --- .../static/css/simplegrid/1236_grid.css | 21 - .../static/css/simplegrid/720_grid.css | 33 - .../static/css/simplegrid/986_grid.css | 24 - .../static/css/simplegrid/LICENSE.txt | 19 - .../static/css/simplegrid/README.txt | 1 - .../static/css/simplegrid/percentage_grid.css | 27 - .../src/main/resources/static/index.html | 56 -- .../src/main/resources/static/js/LICENSE | 26 - .../src/main/resources/static/js/d3.v2.min.js | 4 - .../static/js/jquery.tinysort.min.js | 12 - .../src/main/resources/static/js/tmpl.js | 43 - .../main/resources/static/monitor/monitor.css | 101 --- .../resources/static/monitor/monitor.html | 194 ----- 64 files changed, 12 insertions(+), 3183 deletions(-) rename spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/{annotations => }/EnableHystrix.java (92%) rename {spring-cloud-netflix-hystrix => spring-cloud-netflix-hystrix-dashboard}/pom.xml (67%) rename {spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations => spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard}/EnableHystrixDashboard.java (75%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.js (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon-20.png (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon.png (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuit.html (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitProperties.html (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/global.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/resets.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/simplegrid/1236_grid.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/simplegrid/720_grid.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/simplegrid/986_grid.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/simplegrid/LICENSE.txt (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/simplegrid/README.txt (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/css/simplegrid/percentage_grid.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/index.html (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/js/jquery.tinysort.min.js (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/js/tmpl.js (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/monitor/monitor.css (100%) rename {spring-cloud-netflix-core => spring-cloud-netflix-hystrix-dashboard}/src/main/resources/static/hystrix/monitor/monitor.html (100%) delete mode 100644 spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/HystrixDashboardApplication.java delete mode 100644 spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/stream/MockStreamServlet.java delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/META-INF/spring.factories delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/application.yml delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/bootstrap.yml delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/io/spring/cloud/netflix/hystrix/stream/hystrix.stream delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/log4j.properties delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon-20.png delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon.png delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/global.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/resets.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/index.html delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/js/LICENSE delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/js/tmpl.js delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.css delete mode 100644 spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.html diff --git a/pom.xml b/pom.xml index c5d055b1..e70a7d62 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ spring-cloud-netflix-core - spring-cloud-netflix-hystrix + spring-cloud-netflix-hystrix-dashboard spring-cloud-netflix-turbine spring-cloud-netflix-zuul @@ -32,6 +32,11 @@ spring-cloud-netflix-core 1.0.0.BUILD-SNAPSHOT + + org.springframework.cloud + spring-cloud-netflix-hystrix-dashboard + 1.0.0.BUILD-SNAPSHOT + com.netflix.archaius archaius-core diff --git a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations/EnableHystrix.java b/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/EnableHystrix.java similarity index 92% rename from spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations/EnableHystrix.java rename to spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/EnableHystrix.java index 76ee727c..e65eeb80 100644 --- a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations/EnableHystrix.java +++ b/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/EnableHystrix.java @@ -1,9 +1,8 @@ -package org.springframework.cloud.netflix.hystrix.annotations; +package org.springframework.cloud.netflix.hystrix; import org.springframework.context.annotation.AdviceMode; import org.springframework.context.annotation.Import; import org.springframework.core.Ordered; -import org.springframework.cloud.netflix.hystrix.HystrixConfigurationSelector; import java.lang.annotation.*; diff --git a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfiguration.java b/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfiguration.java index afc41eb3..848c9b35 100644 --- a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfiguration.java +++ b/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfiguration.java @@ -8,7 +8,6 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.ImportAware; import org.springframework.core.annotation.AnnotationAttributes; import org.springframework.core.type.AnnotationMetadata; -import org.springframework.cloud.netflix.hystrix.annotations.EnableHystrix; import org.springframework.util.Assert; import org.springframework.util.CollectionUtils; diff --git a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfigurationSelector.java b/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfigurationSelector.java index d86a4091..92d5982c 100644 --- a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfigurationSelector.java +++ b/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/HystrixConfigurationSelector.java @@ -3,7 +3,6 @@ package org.springframework.cloud.netflix.hystrix; import org.springframework.context.annotation.AdviceMode; import org.springframework.context.annotation.AdviceModeImportSelector; import org.springframework.context.annotation.AutoProxyRegistrar; -import org.springframework.cloud.netflix.hystrix.annotations.EnableHystrix; /** * Created by sgibb on 6/19/14. diff --git a/spring-cloud-netflix-hystrix/pom.xml b/spring-cloud-netflix-hystrix-dashboard/pom.xml similarity index 67% rename from spring-cloud-netflix-hystrix/pom.xml rename to spring-cloud-netflix-hystrix-dashboard/pom.xml index 0db7c489..828a9e0b 100644 --- a/spring-cloud-netflix-hystrix/pom.xml +++ b/spring-cloud-netflix-hystrix-dashboard/pom.xml @@ -1,8 +1,7 @@ 4.0.0 - spring-cloud-netflix-hystrix - war + spring-cloud-netflix-hystrix-dashboard Spring Cloud Netflix Hystrix http://projects.spring.io/spring-cloud/ @@ -12,32 +11,16 @@ .. - - - - org.springframework.boot - spring-boot-maven-plugin - - - - maven-deploy-plugin - - true - - - - - - 1.0.0.BUILD-SNAPSHOT + 1.0.0.BUILD-SNAPSHOT org.springframework.cloud - spring-cloud-config - ${spring-cloud-config.version} + spring-cloud-starters + ${spring-cloud.version} pom import @@ -56,10 +39,6 @@ org.apache.httpcomponents httpclient - - org.springframework.cloud - spring-cloud-config-client - com.netflix.eureka eureka-client diff --git a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations/EnableHystrixDashboard.java b/spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/EnableHystrixDashboard.java similarity index 75% rename from spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations/EnableHystrixDashboard.java rename to spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/EnableHystrixDashboard.java index abf27bd7..e70fc3ba 100644 --- a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/annotations/EnableHystrixDashboard.java +++ b/spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/EnableHystrixDashboard.java @@ -1,4 +1,4 @@ -package org.springframework.cloud.netflix.hystrix.annotations; +package org.springframework.cloud.netflix.hystrix.dashboard; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; @@ -6,7 +6,6 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; -import org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardConfiguration; import org.springframework.context.annotation.Import; /** diff --git a/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java b/spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java similarity index 100% rename from spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java rename to spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.js b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.js similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.js rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/hystrixCommand.js diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon-20.png b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon-20.png similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon-20.png rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon-20.png diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon.png b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon.png similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon.png rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/magnifying-glass-icon.png diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuit.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuit.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuit.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuit.html diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitProperties.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitProperties.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitProperties.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuitProperties.html diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/hystrixThreadPool.js diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/global.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/global.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/global.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/global.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/resets.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/resets.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/resets.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/resets.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/1236_grid.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/1236_grid.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/1236_grid.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/1236_grid.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/720_grid.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/720_grid.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/720_grid.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/720_grid.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/986_grid.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/986_grid.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/986_grid.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/986_grid.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/LICENSE.txt b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/LICENSE.txt similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/LICENSE.txt rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/LICENSE.txt diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/README.txt b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/README.txt similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/README.txt rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/README.txt diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/percentage_grid.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/percentage_grid.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/css/simplegrid/percentage_grid.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/css/simplegrid/percentage_grid.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/index.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/index.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/index.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/index.html diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/js/jquery.tinysort.min.js b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/js/jquery.tinysort.min.js similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/js/jquery.tinysort.min.js rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/js/jquery.tinysort.min.js diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/js/tmpl.js b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/js/tmpl.js similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/js/tmpl.js rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/js/tmpl.js diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/monitor/monitor.css b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/monitor/monitor.css similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/monitor/monitor.css rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/monitor/monitor.css diff --git a/spring-cloud-netflix-core/src/main/resources/static/hystrix/monitor/monitor.html b/spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/monitor/monitor.html similarity index 100% rename from spring-cloud-netflix-core/src/main/resources/static/hystrix/monitor/monitor.html rename to spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/monitor/monitor.html diff --git a/spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/HystrixDashboardApplication.java b/spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/HystrixDashboardApplication.java deleted file mode 100644 index 57d0cb51..00000000 --- a/spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/HystrixDashboardApplication.java +++ /dev/null @@ -1,37 +0,0 @@ -package io.spring.cloud.netflix.hystrix; - -import io.spring.cloud.netflix.hystrix.stream.MockStreamServlet; - -import org.springframework.boot.autoconfigure.EnableAutoConfiguration; -import org.springframework.boot.builder.SpringApplicationBuilder; -import org.springframework.boot.context.embedded.ServletRegistrationBean; -import org.springframework.boot.context.web.SpringBootServletInitializer; -import org.springframework.cloud.netflix.hystrix.annotations.EnableHystrixDashboard; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.Configuration; - -/** - * Created by sgibb on 7/11/14. - */ -@Configuration -@ComponentScan -@EnableHystrixDashboard -@EnableAutoConfiguration -public class HystrixDashboardApplication extends SpringBootServletInitializer { - - @Override - protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { - return application.sources(HystrixDashboardApplication.class).web(true); - } - - public static void main(String[] args) { - new SpringApplicationBuilder(HystrixDashboardApplication.class).web(true).run(args); - } - - @Bean - public ServletRegistrationBean mockStreamServlet() { - return new ServletRegistrationBean(new MockStreamServlet(), "/mock.stream"); - } - -} diff --git a/spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/stream/MockStreamServlet.java b/spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/stream/MockStreamServlet.java deleted file mode 100644 index 45c45ea4..00000000 --- a/spring-cloud-netflix-hystrix/src/main/java/io/spring/cloud/netflix/hystrix/stream/MockStreamServlet.java +++ /dev/null @@ -1,107 +0,0 @@ -package io.spring.cloud.netflix.hystrix.stream; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.*; -import java.nio.charset.Charset; - -/** - * Simulate an event stream URL by retrieving pre-canned data instead of going to live servers. - */ -public class MockStreamServlet extends HttpServlet { - private static final long serialVersionUID = 1L; - private static final Logger logger = LoggerFactory.getLogger(MockStreamServlet.class); - - public MockStreamServlet() { - super(); - } - - /** - * @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) - */ - protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { - String filename = request.getParameter("file"); - if (filename == null) { - // default to using hystrix.stream - filename = "hystrix.stream"; - } else { - // strip any .. / characters to avoid security problems - filename = filename.replaceAll("\\.\\.", ""); - filename = filename.replaceAll("/", ""); - } - int delay = 500; - String delayArg = request.getParameter("delay"); - if (delayArg != null) { - delay = Integer.parseInt(delayArg); - } - - int batch = 1; - String batchArg = request.getParameter("batch"); - if (batchArg != null) { - batch = Integer.parseInt(batchArg); - } - - String data = getFileFromPackage(filename); - String lines[] = data.split("\n"); - - response.setContentType("text/event-stream"); - response.setCharacterEncoding("UTF-8"); - - int batchCount = 0; - // loop forever unless the user closes the connection - for (;;) { - for (String s : lines) { - s = s.trim(); - if (s.length() > 0) { - try { - response.getWriter().println(s); - response.getWriter().println(""); // a newline is needed after each line for the events to trigger - response.getWriter().flush(); - batchCount++; - } catch (Exception e) { - logger.warn("Exception writing mock data to output.", e); - // most likely the user closed the connection - return; - } - if (batchCount == batch) { - // we insert the delay whenever we finish a batch - try { - // simulate the delays we get from the real feed - Thread.sleep(delay); - } catch (InterruptedException e) { - // ignore - } - // reset - batchCount = 0; - } - } - } - } - } - - private String getFileFromPackage(String filename) { - try { - String file = "/" + this.getClass().getPackage().getName().replace('.', '/') + "/" + filename; - InputStream is = this.getClass().getResourceAsStream(file); - try { - /* this is FAR too much work just to get a string from a file */ - BufferedReader in = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8"))); - StringWriter s = new StringWriter(); - int c = -1; - while ((c = in.read()) > -1) { - s.write(c); - } - return s.toString(); - } finally { - is.close(); - } - } catch (Exception e) { - throw new RuntimeException("Could not find file: " + filename, e); - } - } -} diff --git a/spring-cloud-netflix-hystrix/src/main/resources/META-INF/spring.factories b/spring-cloud-netflix-hystrix/src/main/resources/META-INF/spring.factories deleted file mode 100644 index 28c1089f..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/META-INF/spring.factories +++ /dev/null @@ -1,8 +0,0 @@ -#org.springframework.context.ApplicationListener=\ -#org.springframework.cloud.netflix.eureka.EurekaStartingListener,\ -#org.springframework.cloud.netflix.eureka.EurekaUpListener,\ -#org.springframework.cloud.netflix.eureka.EurekaOutOfServiceListener - -#org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ -#org.springframework.cloud.netflix.archaius.ArchaiusAutoConfiguration,\ -#org.springframework.cloud.netflix.feign.FeignAutoConfiguration diff --git a/spring-cloud-netflix-hystrix/src/main/resources/application.yml b/spring-cloud-netflix-hystrix/src/main/resources/application.yml deleted file mode 100644 index a491a9e4..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/application.yml +++ /dev/null @@ -1,39 +0,0 @@ -info: - component: Hystrix Dashboard - -endpoints: - restart: - enabled: true - shutdown: - enabled: true - -server: - port: 7979 - -logging: - level: INFO - -eureka: - client: - #Region where eureka is deployed -For AWS specify one of the AWS regions, for other datacenters specify a arbitrary string - #indicating the region.This is normally specified as a -D option (eg) -Deureka.region=us-east-1 - region: default - - - #For eureka clients running in eureka server, it needs to connect to servers in other zones - preferSameZone: false - - #Change this if you want to use a DNS based lookup for determining other eureka servers. For example - #of specifying the DNS entries, check the eureka-client-test.properties, eureka-client-prod.properties - #shouldUseDns: false - - us-east-1: - availabilityZones: default - - serviceUrl: - default: http://localhost:8080/eureka/v2/ - defaultZone: http://localhost:8080/eureka/v2/ - - instance: - #Virtual host name by which the clients identifies this service - virtualHostName: ${spring.application.name} diff --git a/spring-cloud-netflix-hystrix/src/main/resources/bootstrap.yml b/spring-cloud-netflix-hystrix/src/main/resources/bootstrap.yml deleted file mode 100644 index 3a561da4..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/bootstrap.yml +++ /dev/null @@ -1,6 +0,0 @@ -spring: - application: - name: hystrixdashboard - platform: - config: - uri: http://localhost:${config.port:8888} \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/io/spring/cloud/netflix/hystrix/stream/hystrix.stream b/spring-cloud-netflix-hystrix/src/main/resources/io/spring/cloud/netflix/hystrix/stream/hystrix.stream deleted file mode 100644 index 318b2955..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/io/spring/cloud/netflix/hystrix/stream/hystrix.stream +++ /dev/null @@ -1,809 +0,0 @@ -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860557473,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1346,"latencyExecute":{"0":1346,"25":1346,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1347,"latencyTotal":{"0":1347,"25":1347,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860557490,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":8,"25":8,"50":8,"75":8,"90":8,"95":8,"99":8,"99.5":8,"100":8},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860557490,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":98,"latencyExecute":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"latencyTotal_mean":98,"latencyTotal":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860557491,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":2,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":11,"latencyExecute":{"0":11,"25":11,"50":11,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":20,"latencyTotal":{"0":20,"25":20,"50":20,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860557493,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860557493,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860557493,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860557493,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860557995,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1346,"latencyExecute":{"0":1346,"25":1346,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1347,"latencyTotal":{"0":1347,"25":1347,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860557996,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":8,"25":8,"50":8,"75":8,"90":8,"95":8,"99":8,"99.5":8,"100":8},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860557997,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":98,"latencyExecute":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"latencyTotal_mean":98,"latencyTotal":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860557998,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":2,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":11,"latencyExecute":{"0":11,"25":11,"50":11,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":20,"latencyTotal":{"0":20,"25":20,"50":20,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860557999,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860557999,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860557999,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860557999,"currentActiveCount":0,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":1,"currentMaximumPoolSize":8,"currentPoolSize":1,"currentQueueSize":0,"currentTaskCount":1,"rollingCountThreadsExecuted":1,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860558500,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1346,"latencyExecute":{"0":1346,"25":1346,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1347,"latencyTotal":{"0":1347,"25":1347,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860558501,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":8,"25":8,"50":8,"75":8,"90":8,"95":8,"99":8,"99.5":8,"100":8},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860558503,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":98,"latencyExecute":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"latencyTotal_mean":98,"latencyTotal":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860558504,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":4,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":11,"latencyExecute":{"0":11,"25":11,"50":11,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":20,"latencyTotal":{"0":20,"25":20,"50":20,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860558505,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860558505,"currentActiveCount":1,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860558505,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860558505,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860559006,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":1,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":1,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1346,"latencyExecute":{"0":1346,"25":1346,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1347,"latencyTotal":{"0":1347,"25":1347,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860559008,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":8,"25":8,"50":8,"75":8,"90":8,"95":8,"99":8,"99.5":8,"100":8},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860559009,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":98,"latencyExecute":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"latencyTotal_mean":98,"latencyTotal":{"0":98,"25":98,"50":98,"75":98,"90":98,"95":98,"99":98,"99.5":98,"100":98},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860559010,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":4,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":11,"latencyExecute":{"0":11,"25":11,"50":11,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":20,"latencyTotal":{"0":20,"25":20,"50":20,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860559011,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860559011,"currentActiveCount":1,"currentCompletedTaskCount":1,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860559011,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860559011,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860559513,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1346,"latencyExecute":{"0":1346,"25":1346,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1347,"latencyTotal":{"0":1347,"25":1347,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860559514,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":12,"latencyExecute":{"0":8,"25":12,"50":16,"75":16,"90":16,"95":16,"99":16,"99.5":16,"100":16},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860559515,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":165,"latencyExecute":{"0":98,"25":165,"50":232,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":165,"latencyTotal":{"0":98,"25":165,"50":232,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860559515,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":4,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":8,"25":9,"50":11,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":14,"latencyTotal":{"0":9,"25":14,"50":20,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860559516,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860559516,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860559517,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860559517,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860560018,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1160,"latencyExecute":{"0":975,"25":1160,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1161,"latencyTotal":{"0":976,"25":1161,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860560019,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":12,"latencyExecute":{"0":8,"25":12,"50":16,"75":16,"90":16,"95":16,"99":16,"99.5":16,"100":16},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860560020,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":165,"latencyExecute":{"0":98,"25":165,"50":232,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":165,"latencyTotal":{"0":98,"25":165,"50":232,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860560021,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":4,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":8,"25":9,"50":11,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":14,"latencyTotal":{"0":9,"25":14,"50":20,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860560022,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860560022,"currentActiveCount":0,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":2,"currentMaximumPoolSize":8,"currentPoolSize":2,"currentQueueSize":0,"currentTaskCount":2,"rollingCountThreadsExecuted":2,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860560022,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860560023,"currentActiveCount":1,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860560524,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1160,"latencyExecute":{"0":975,"25":1160,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1161,"latencyTotal":{"0":976,"25":1161,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860560525,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":7,"25":7,"50":12,"75":16,"90":16,"95":16,"99":16,"99.5":16,"100":16},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860560527,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":133,"latencyExecute":{"0":71,"25":91,"50":165,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":133,"latencyTotal":{"0":71,"25":91,"50":165,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860560529,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":6,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":7,"latencyExecute":{"0":4,"25":7,"50":9,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":11,"latencyTotal":{"0":5,"25":8,"50":14,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860560531,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860560531,"currentActiveCount":1,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860560532,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860560532,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860561034,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":2,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":2,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1160,"latencyExecute":{"0":975,"25":1160,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1161,"latencyTotal":{"0":976,"25":1161,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860561036,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":7,"25":7,"50":12,"75":16,"90":16,"95":16,"99":16,"99.5":16,"100":16},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860561037,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":133,"latencyExecute":{"0":71,"25":91,"50":165,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":133,"latencyTotal":{"0":71,"25":91,"50":165,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860561038,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":6,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":7,"latencyExecute":{"0":4,"25":7,"50":9,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":11,"latencyTotal":{"0":5,"25":8,"50":14,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860561039,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860561040,"currentActiveCount":1,"currentCompletedTaskCount":2,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860561040,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860561040,"currentActiveCount":0,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":3,"currentMaximumPoolSize":8,"currentPoolSize":3,"currentQueueSize":0,"currentTaskCount":3,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860561542,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1160,"latencyExecute":{"0":975,"25":1160,"50":1346,"75":1346,"90":1346,"95":1346,"99":1346,"99.5":1346,"100":1346},"latencyTotal_mean":1161,"latencyTotal":{"0":976,"25":1161,"50":1347,"75":1347,"90":1347,"95":1347,"99":1347,"99.5":1347,"100":1347},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860561543,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":12,"latencyExecute":{"0":7,"25":8,"50":16,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860561544,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":120,"latencyExecute":{"0":71,"25":80,"50":98,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":120,"latencyTotal":{"0":71,"25":81,"50":98,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860561546,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":8,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":7,"latencyExecute":{"0":4,"25":6,"50":8,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":10,"latencyTotal":{"0":5,"25":7,"50":9,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860561547,"currentActiveCount":0,"currentCompletedTaskCount":4,"currentCorePoolSize":8,"currentLargestPoolSize":4,"currentMaximumPoolSize":8,"currentPoolSize":4,"currentQueueSize":0,"currentTaskCount":4,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860561547,"currentActiveCount":1,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":4,"currentMaximumPoolSize":8,"currentPoolSize":4,"currentQueueSize":0,"currentTaskCount":4,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860561548,"currentActiveCount":0,"currentCompletedTaskCount":4,"currentCorePoolSize":8,"currentLargestPoolSize":4,"currentMaximumPoolSize":8,"currentPoolSize":4,"currentQueueSize":0,"currentTaskCount":4,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860561548,"currentActiveCount":0,"currentCompletedTaskCount":4,"currentCorePoolSize":8,"currentLargestPoolSize":4,"currentMaximumPoolSize":8,"currentPoolSize":4,"currentQueueSize":0,"currentTaskCount":4,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860562049,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1246,"latencyExecute":{"0":975,"25":1253,"50":1382,"75":1419,"90":1419,"95":1419,"99":1419,"99.5":1419,"100":1419},"latencyTotal_mean":1247,"latencyTotal":{"0":976,"25":1254,"50":1383,"75":1420,"90":1420,"95":1420,"99":1420,"99.5":1420,"100":1420},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860562051,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":12,"latencyExecute":{"0":7,"25":8,"50":16,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860562052,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":120,"latencyExecute":{"0":71,"25":80,"50":98,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":120,"latencyTotal":{"0":71,"25":81,"50":98,"75":232,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860562053,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":8,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":7,"latencyExecute":{"0":4,"25":6,"50":8,"75":11,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":10,"latencyTotal":{"0":5,"25":7,"50":9,"75":20,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860562054,"currentActiveCount":0,"currentCompletedTaskCount":5,"currentCorePoolSize":8,"currentLargestPoolSize":5,"currentMaximumPoolSize":8,"currentPoolSize":5,"currentQueueSize":0,"currentTaskCount":5,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860562054,"currentActiveCount":1,"currentCompletedTaskCount":3,"currentCorePoolSize":8,"currentLargestPoolSize":4,"currentMaximumPoolSize":8,"currentPoolSize":4,"currentQueueSize":0,"currentTaskCount":4,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860562055,"currentActiveCount":0,"currentCompletedTaskCount":5,"currentCorePoolSize":8,"currentLargestPoolSize":5,"currentMaximumPoolSize":8,"currentPoolSize":5,"currentQueueSize":0,"currentTaskCount":5,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860562055,"currentActiveCount":1,"currentCompletedTaskCount":4,"currentCorePoolSize":8,"currentLargestPoolSize":5,"currentMaximumPoolSize":8,"currentPoolSize":5,"currentQueueSize":0,"currentTaskCount":5,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860562556,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1246,"latencyExecute":{"0":975,"25":1253,"50":1382,"75":1419,"90":1419,"95":1419,"99":1419,"99.5":1419,"100":1419},"latencyTotal_mean":1247,"latencyTotal":{"0":976,"25":1254,"50":1383,"75":1420,"90":1420,"95":1420,"99":1420,"99.5":1420,"100":1420},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860562558,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":8,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":8,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":11,"latencyExecute":{"0":5,"25":7,"50":12,"75":19,"90":20,"95":20,"99":20,"99.5":20,"100":20},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860562559,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":7,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":107,"latencyExecute":{"0":58,"25":73,"50":89,"75":198,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":108,"latencyTotal":{"0":58,"25":73,"50":89,"75":198,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860562560,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":8,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":14,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":8,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":6,"latencyExecute":{"0":3,"25":4,"50":7,"75":10,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":5,"50":8,"75":17,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860562561,"currentActiveCount":0,"currentCompletedTaskCount":8,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":8,"rollingCountThreadsExecuted":8,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860562562,"currentActiveCount":3,"currentCompletedTaskCount":4,"currentCorePoolSize":8,"currentLargestPoolSize":7,"currentMaximumPoolSize":8,"currentPoolSize":7,"currentQueueSize":0,"currentTaskCount":7,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860562562,"currentActiveCount":0,"currentCompletedTaskCount":8,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":8,"rollingCountThreadsExecuted":8,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860562562,"currentActiveCount":1,"currentCompletedTaskCount":7,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":8,"rollingCountThreadsExecuted":8,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860563063,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1246,"latencyExecute":{"0":975,"25":1253,"50":1382,"75":1419,"90":1419,"95":1419,"99":1419,"99.5":1419,"100":1419},"latencyTotal_mean":1247,"latencyTotal":{"0":976,"25":1254,"50":1383,"75":1420,"90":1420,"95":1420,"99":1420,"99.5":1420,"100":1420},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860563064,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":11,"latencyExecute":{"0":5,"25":7,"50":12,"75":19,"90":20,"95":20,"99":20,"99.5":20,"100":20},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860563066,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":107,"latencyExecute":{"0":58,"25":73,"50":89,"75":198,"90":232,"95":232,"99":232,"99.5":232,"100":232},"latencyTotal_mean":108,"latencyTotal":{"0":58,"25":73,"50":89,"75":198,"90":232,"95":232,"99":232,"99.5":232,"100":232},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860563067,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":20,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":6,"latencyExecute":{"0":3,"25":4,"50":7,"75":10,"90":11,"95":11,"99":11,"99.5":11,"100":11},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":5,"50":8,"75":17,"90":20,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860563069,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860563069,"currentActiveCount":6,"currentCompletedTaskCount":4,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":10,"rollingCountThreadsExecuted":10,"rollingMaxActiveThreads":6,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860563069,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860563069,"currentActiveCount":1,"currentCompletedTaskCount":10,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860563570,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1192,"latencyExecute":{"0":938,"25":1029,"50":1346,"75":1407,"90":1419,"95":1419,"99":1419,"99.5":1419,"100":1419},"latencyTotal_mean":1193,"latencyTotal":{"0":939,"25":1030,"50":1347,"75":1408,"90":1420,"95":1420,"99":1420,"99.5":1420,"100":1420},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860563572,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":13,"latencyExecute":{"0":5,"25":8,"50":12,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860563573,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":154,"latencyExecute":{"0":58,"25":92,"50":117,"75":233,"90":391,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":154,"latencyTotal":{"0":58,"25":92,"50":118,"75":233,"90":392,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860563575,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":19,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860563576,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860563576,"currentActiveCount":5,"currentCompletedTaskCount":6,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860563576,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860563577,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860564078,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":8,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":8,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1192,"latencyExecute":{"0":938,"25":1029,"50":1346,"75":1407,"90":1419,"95":1419,"99":1419,"99.5":1419,"100":1419},"latencyTotal_mean":1193,"latencyTotal":{"0":939,"25":1030,"50":1347,"75":1408,"90":1420,"95":1420,"99":1420,"99.5":1420,"100":1420},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860564080,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":13,"latencyExecute":{"0":5,"25":8,"50":12,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860564081,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":154,"latencyExecute":{"0":58,"25":92,"50":117,"75":233,"90":391,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":154,"latencyTotal":{"0":58,"25":92,"50":118,"75":233,"90":392,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860564083,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":19,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860564084,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860564084,"currentActiveCount":3,"currentCompletedTaskCount":8,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860564084,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":10,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860564084,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860564586,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1220,"latencyExecute":{"0":938,"25":1073,"50":1255,"75":1429,"90":1493,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1221,"latencyTotal":{"0":939,"25":1074,"50":1256,"75":1430,"90":1494,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860564587,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":13,"latencyExecute":{"0":5,"25":8,"50":12,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860564588,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":154,"latencyExecute":{"0":58,"25":92,"50":117,"75":233,"90":391,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":154,"latencyTotal":{"0":58,"25":92,"50":118,"75":233,"90":392,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860564589,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":20,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":19,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860564590,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":10,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860564590,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":10,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860564590,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":10,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860564590,"currentActiveCount":0,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":11,"rollingCountThreadsExecuted":10,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860565091,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1220,"latencyExecute":{"0":938,"25":1073,"50":1255,"75":1429,"90":1493,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1221,"latencyTotal":{"0":939,"25":1074,"50":1256,"75":1430,"90":1494,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860565092,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":13,"latencyExecute":{"0":5,"25":8,"50":12,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860565093,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":154,"latencyExecute":{"0":58,"25":92,"50":117,"75":233,"90":391,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":154,"latencyTotal":{"0":58,"25":92,"50":118,"75":233,"90":392,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860565094,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":19,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860565094,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860565095,"currentActiveCount":1,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860565095,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860565095,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860565596,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1220,"latencyExecute":{"0":938,"25":1073,"50":1255,"75":1429,"90":1493,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1221,"latencyTotal":{"0":939,"25":1074,"50":1256,"75":1430,"90":1494,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860565598,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860565599,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":145,"latencyExecute":{"0":54,"25":80,"50":113,"75":232,"90":374,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":145,"latencyTotal":{"0":54,"25":81,"50":113,"75":232,"90":375,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860565600,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":18,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860565601,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860565601,"currentActiveCount":1,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860565601,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860565602,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860566103,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1220,"latencyExecute":{"0":938,"25":1073,"50":1255,"75":1429,"90":1493,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1221,"latencyTotal":{"0":939,"25":1074,"50":1256,"75":1430,"90":1494,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860566104,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860566104,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":145,"latencyExecute":{"0":54,"25":80,"50":113,"75":232,"90":374,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":145,"latencyTotal":{"0":54,"25":81,"50":113,"75":232,"90":375,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860566105,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":18,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860566106,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860566106,"currentActiveCount":1,"currentCompletedTaskCount":11,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860566106,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860566106,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860566608,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1235,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1489,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1235,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1490,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860566609,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860566610,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":145,"latencyExecute":{"0":54,"25":80,"50":113,"75":232,"90":374,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":145,"latencyTotal":{"0":54,"25":81,"50":113,"75":232,"90":375,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860566610,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":18,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860566611,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860566611,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860566611,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860566612,"currentActiveCount":0,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":12,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860567113,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1235,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1489,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1235,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1490,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860567113,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860567114,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":145,"latencyExecute":{"0":54,"25":80,"50":113,"75":232,"90":374,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":145,"latencyTotal":{"0":54,"25":81,"50":113,"75":232,"90":375,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860567114,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":24,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":17,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860567115,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860567115,"currentActiveCount":1,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860567115,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860567115,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860567617,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1235,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1489,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1235,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1490,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860567618,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860567618,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":83,"50":105,"75":218,"90":357,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":83,"50":105,"75":218,"90":358,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860567619,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":24,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":17,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860567619,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860567620,"currentActiveCount":1,"currentCompletedTaskCount":12,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860567620,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860567620,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860568121,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1235,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1489,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1235,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1490,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860568122,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860568123,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":83,"50":105,"75":218,"90":357,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":83,"50":105,"75":218,"90":358,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860568123,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":22,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":17,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860568124,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860568124,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860568124,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860568125,"currentActiveCount":0,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":13,"rollingCountThreadsExecuted":11,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860568626,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1213,"latencyExecute":{"0":938,"25":1051,"50":1255,"75":1413,"90":1485,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1213,"latencyTotal":{"0":939,"25":1052,"50":1256,"75":1414,"90":1486,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860568627,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":14,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":14,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":23,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860568628,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":83,"50":105,"75":218,"90":357,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":83,"50":105,"75":218,"90":358,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860568629,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":14,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":14,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":9,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":9,"75":12,"90":17,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860568629,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":14,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860568629,"currentActiveCount":2,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":15,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860568630,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":14,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860568630,"currentActiveCount":1,"currentCompletedTaskCount":15,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":14,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860569131,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":11,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1213,"latencyExecute":{"0":938,"25":1051,"50":1255,"75":1413,"90":1485,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1213,"latencyTotal":{"0":939,"25":1052,"50":1256,"75":1414,"90":1486,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860569132,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860569133,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":14,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":14,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":83,"50":105,"75":218,"90":357,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":83,"50":105,"75":218,"90":358,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860569133,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":15,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860569134,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860569134,"currentActiveCount":3,"currentCompletedTaskCount":13,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":14,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860569134,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860569135,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860569636,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1213,"latencyExecute":{"0":938,"25":1051,"50":1255,"75":1413,"90":1485,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1213,"latencyTotal":{"0":939,"25":1052,"50":1256,"75":1414,"90":1486,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860569636,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860569636,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":80,"50":113,"75":188,"90":306,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":81,"50":113,"75":188,"90":307,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860569637,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":15,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860569637,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860569637,"currentActiveCount":2,"currentCompletedTaskCount":14,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860569637,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860569637,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860570138,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1213,"latencyExecute":{"0":938,"25":1051,"50":1255,"75":1413,"90":1485,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1213,"latencyTotal":{"0":939,"25":1052,"50":1256,"75":1414,"90":1486,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860570138,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860570139,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":80,"50":113,"75":188,"90":306,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":81,"50":113,"75":188,"90":307,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860570140,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":15,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860570140,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860570141,"currentActiveCount":1,"currentCompletedTaskCount":15,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860570141,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860570141,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860570642,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860570644,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860570644,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":80,"50":113,"75":188,"90":306,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":81,"50":113,"75":188,"90":307,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860570645,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":8,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":12,"95":12,"99":12,"99.5":12,"100":12},"latencyTotal_mean":9,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":15,"95":20,"99":20,"99.5":20,"100":20},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860570646,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860570646,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860570646,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860570646,"currentActiveCount":0,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":16,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860571148,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860571148,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860571149,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":141,"latencyExecute":{"0":54,"25":80,"50":113,"75":188,"90":306,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":141,"latencyTotal":{"0":54,"25":81,"50":113,"75":188,"90":307,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860571150,"isCircuitBreakerOpen":false,"errorPercentage":8,"errorCount":1,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860571151,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860571151,"currentActiveCount":1,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":13,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860571151,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860571151,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860571653,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860571654,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860571654,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860571655,"isCircuitBreakerOpen":false,"errorPercentage":8,"errorCount":1,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":26,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":11,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860571655,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860571655,"currentActiveCount":1,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860571655,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860571655,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":2,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860572157,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":13,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":13,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860572157,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860572158,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":12,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":12,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860572159,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":14,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860572159,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860572160,"currentActiveCount":1,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":12,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860572160,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860572160,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860572662,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860572663,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860572664,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860572665,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":14,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860572665,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860572666,"currentActiveCount":1,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860572666,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860572666,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860573168,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":10,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":10,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860573168,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860573169,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860573170,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860573171,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860573171,"currentActiveCount":1,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":7,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860573171,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860573172,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860573673,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860573674,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860573674,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860573675,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860573675,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860573675,"currentActiveCount":1,"currentCompletedTaskCount":16,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860573676,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860573676,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860574177,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1241,"latencyExecute":{"0":938,"25":1084,"50":1346,"75":1419,"90":1484,"95":1497,"99":1497,"99.5":1497,"100":1497},"latencyTotal_mean":1242,"latencyTotal":{"0":939,"25":1085,"50":1347,"75":1420,"90":1484,"95":1498,"99":1498,"99.5":1498,"100":1498},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860574178,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860574178,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860574178,"isCircuitBreakerOpen":false,"errorPercentage":20,"errorCount":1,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":10,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860574179,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860574179,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860574179,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860574179,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860574680,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1345,"latencyExecute":{"0":938,"25":1089,"50":1370,"75":1449,"90":1948,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1346,"latencyTotal":{"0":939,"25":1090,"50":1371,"75":1450,"90":1949,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860574681,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":14,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860574682,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860574683,"isCircuitBreakerOpen":false,"errorPercentage":20,"errorCount":1,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":10,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":6,"50":10,"75":11,"90":23,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":12,"latencyTotal":{"0":4,"25":7,"50":10,"75":12,"90":29,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860574683,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860574683,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860574683,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860574688,"currentActiveCount":0,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":17,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860575190,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1345,"latencyExecute":{"0":938,"25":1089,"50":1370,"75":1449,"90":1948,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1346,"latencyTotal":{"0":939,"25":1090,"50":1371,"75":1450,"90":1949,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860575190,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860575191,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":73,"50":105,"75":185,"90":289,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":137,"latencyTotal":{"0":54,"25":73,"50":105,"75":185,"90":290,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860575191,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":10,"75":11,"90":19,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":10,"75":12,"90":26,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860575192,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860575192,"currentActiveCount":1,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860575192,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860575192,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860575694,"isCircuitBreakerOpen":false,"errorPercentage":20,"errorCount":1,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1345,"latencyExecute":{"0":938,"25":1089,"50":1370,"75":1449,"90":1948,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1346,"latencyTotal":{"0":939,"25":1090,"50":1371,"75":1450,"90":1949,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860575694,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860575694,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":139,"latencyExecute":{"0":54,"25":75,"50":113,"75":182,"90":272,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":139,"latencyTotal":{"0":54,"25":76,"50":113,"75":182,"90":272,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860575695,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":10,"75":11,"90":19,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":10,"75":12,"90":26,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860575695,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860575695,"currentActiveCount":1,"currentCompletedTaskCount":17,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860575695,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860575695,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860576195,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1345,"latencyExecute":{"0":938,"25":1089,"50":1370,"75":1449,"90":1948,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1346,"latencyTotal":{"0":939,"25":1090,"50":1371,"75":1450,"90":1949,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860576196,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860576196,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":139,"latencyExecute":{"0":54,"25":75,"50":113,"75":182,"90":272,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":139,"latencyTotal":{"0":54,"25":76,"50":113,"75":182,"90":272,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860576197,"isCircuitBreakerOpen":false,"errorPercentage":20,"errorCount":1,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":10,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":4,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":10,"75":11,"90":19,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":10,"75":12,"90":26,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860576197,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860576197,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860576198,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860576198,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860576699,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1329,"latencyExecute":{"0":938,"25":1074,"50":1346,"75":1439,"90":1797,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1330,"latencyTotal":{"0":939,"25":1074,"50":1347,"75":1440,"90":1798,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860576699,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860576700,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":5,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":139,"latencyExecute":{"0":54,"25":75,"50":113,"75":182,"90":272,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":139,"latencyTotal":{"0":54,"25":76,"50":113,"75":182,"90":272,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860576700,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":10,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":10,"75":11,"90":19,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":10,"75":12,"90":26,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860576700,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860576700,"currentActiveCount":0,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":18,"rollingCountThreadsExecuted":5,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860576700,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860576700,"currentActiveCount":1,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860577201,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1329,"latencyExecute":{"0":938,"25":1074,"50":1346,"75":1439,"90":1797,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1330,"latencyTotal":{"0":939,"25":1074,"50":1347,"75":1440,"90":1798,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860577201,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860577202,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":77,"50":115,"75":179,"90":255,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":138,"latencyTotal":{"0":54,"25":78,"50":115,"75":179,"90":256,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860577202,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":15,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":23,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860577202,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860577202,"currentActiveCount":1,"currentCompletedTaskCount":18,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860577202,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860577202,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860577704,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1329,"latencyExecute":{"0":938,"25":1074,"50":1346,"75":1439,"90":1797,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1330,"latencyTotal":{"0":939,"25":1074,"50":1347,"75":1440,"90":1798,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860577704,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860577704,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":77,"50":115,"75":179,"90":255,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":138,"latencyTotal":{"0":54,"25":78,"50":115,"75":179,"90":256,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860577704,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":15,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":23,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860577705,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860577705,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860577705,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860577705,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860578206,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1329,"latencyExecute":{"0":938,"25":1074,"50":1346,"75":1439,"90":1797,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1330,"latencyTotal":{"0":939,"25":1074,"50":1347,"75":1440,"90":1798,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860578206,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860578207,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":3,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":77,"50":115,"75":179,"90":255,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":138,"latencyTotal":{"0":54,"25":78,"50":115,"75":179,"90":256,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860578207,"isCircuitBreakerOpen":false,"errorPercentage":25,"errorCount":1,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":6,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":15,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":23,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860578207,"currentActiveCount":1,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":20,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860578207,"currentActiveCount":0,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":19,"rollingCountThreadsExecuted":3,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860578207,"currentActiveCount":0,"currentCompletedTaskCount":20,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":20,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860578207,"currentActiveCount":1,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":20,"rollingCountThreadsExecuted":4,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860578709,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1308,"latencyExecute":{"0":916,"25":1058,"50":1284,"75":1429,"90":1647,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1308,"latencyTotal":{"0":917,"25":1058,"50":1285,"75":1430,"90":1648,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860578709,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":20,"90":24,"95":24,"99":24,"99.5":24,"100":24},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860578709,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":137,"latencyExecute":{"0":54,"25":77,"50":115,"75":179,"90":255,"95":408,"99":408,"99.5":408,"100":408},"latencyTotal_mean":138,"latencyTotal":{"0":54,"25":78,"50":115,"75":179,"90":256,"95":409,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860578709,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":10,"latencyExecute":{"0":3,"25":5,"50":9,"75":11,"90":15,"95":51,"99":51,"99.5":51,"100":51},"latencyTotal_mean":11,"latencyTotal":{"0":4,"25":6,"50":9,"75":12,"90":23,"95":53,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860578710,"currentActiveCount":0,"currentCompletedTaskCount":22,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":22,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860578710,"currentActiveCount":3,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":22,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":3,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860578710,"currentActiveCount":0,"currentCompletedTaskCount":22,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":22,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860578710,"currentActiveCount":0,"currentCompletedTaskCount":22,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":22,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860579211,"isCircuitBreakerOpen":false,"errorPercentage":16,"errorCount":1,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":5,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1308,"latencyExecute":{"0":916,"25":1058,"50":1284,"75":1429,"90":1647,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1308,"latencyTotal":{"0":917,"25":1058,"50":1285,"75":1430,"90":1648,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860579211,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":7,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":25,"99":25,"99.5":25,"100":25},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860579212,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":7,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":135,"latencyExecute":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":382,"99":408,"99.5":408,"100":408},"latencyTotal_mean":135,"latencyTotal":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":383,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860579212,"isCircuitBreakerOpen":false,"errorPercentage":14,"errorCount":1,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":14,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":2,"25":4,"50":8,"75":11,"90":12,"95":45,"99":51,"99.5":51,"100":51},"latencyTotal_mean":10,"latencyTotal":{"0":2,"25":5,"50":9,"75":12,"90":17,"95":48,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860579212,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860579213,"currentActiveCount":4,"currentCompletedTaskCount":19,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860579213,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860579213,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860579714,"isCircuitBreakerOpen":false,"errorPercentage":25,"errorCount":1,"requestCount":4,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":3,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1308,"latencyExecute":{"0":916,"25":1058,"50":1284,"75":1429,"90":1647,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1308,"latencyTotal":{"0":917,"25":1058,"50":1285,"75":1430,"90":1648,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860579714,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":7,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":25,"99":25,"99.5":25,"100":25},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860579715,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":7,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":135,"latencyExecute":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":382,"99":408,"99.5":408,"100":408},"latencyTotal_mean":135,"latencyTotal":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":383,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860579715,"isCircuitBreakerOpen":false,"errorPercentage":14,"errorCount":1,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":1,"rollingCountResponsesFromCache":14,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":2,"25":4,"50":8,"75":11,"90":12,"95":45,"99":51,"99.5":51,"100":51},"latencyTotal_mean":10,"latencyTotal":{"0":2,"25":5,"50":9,"75":12,"90":17,"95":48,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860579715,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860579715,"currentActiveCount":3,"currentCompletedTaskCount":20,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860579715,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860579715,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":7,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860580216,"isCircuitBreakerOpen":false,"errorPercentage":14,"errorCount":1,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1308,"latencyExecute":{"0":916,"25":1058,"50":1284,"75":1429,"90":1647,"95":3001,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1308,"latencyTotal":{"0":917,"25":1058,"50":1285,"75":1430,"90":1648,"95":3002,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860580217,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":25,"99":25,"99.5":25,"100":25},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860580217,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":135,"latencyExecute":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":382,"99":408,"99.5":408,"100":408},"latencyTotal_mean":135,"latencyTotal":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":383,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860580217,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":2,"25":4,"50":8,"75":11,"90":12,"95":45,"99":51,"99.5":51,"100":51},"latencyTotal_mean":10,"latencyTotal":{"0":2,"25":5,"50":9,"75":12,"90":17,"95":48,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860580217,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860580218,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860580218,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860580218,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860580719,"isCircuitBreakerOpen":false,"errorPercentage":14,"errorCount":1,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1286,"latencyExecute":{"0":916,"25":1025,"50":1272,"75":1429,"90":1490,"95":2775,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1286,"latencyTotal":{"0":917,"25":1025,"50":1273,"75":1430,"90":1491,"95":2776,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860580719,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":25,"99":25,"99.5":25,"100":25},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860580720,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":135,"latencyExecute":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":382,"99":408,"99.5":408,"100":408},"latencyTotal_mean":135,"latencyTotal":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":383,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860580720,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":2,"25":4,"50":8,"75":11,"90":12,"95":45,"99":51,"99.5":51,"100":51},"latencyTotal_mean":10,"latencyTotal":{"0":2,"25":5,"50":9,"75":12,"90":17,"95":48,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860580720,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860580720,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860580720,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860580720,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860581222,"isCircuitBreakerOpen":false,"errorPercentage":14,"errorCount":1,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1286,"latencyExecute":{"0":916,"25":1025,"50":1272,"75":1429,"90":1490,"95":2775,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1286,"latencyTotal":{"0":917,"25":1025,"50":1273,"75":1430,"90":1491,"95":2776,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860581222,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":25,"99":25,"99.5":25,"100":25},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860581222,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":135,"latencyExecute":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":382,"99":408,"99.5":408,"100":408},"latencyTotal_mean":135,"latencyTotal":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":383,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860581222,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":2,"25":4,"50":8,"75":11,"90":12,"95":45,"99":51,"99.5":51,"100":51},"latencyTotal_mean":10,"latencyTotal":{"0":2,"25":5,"50":9,"75":12,"90":17,"95":48,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860581223,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860581223,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860581223,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860581223,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -:ping - -data: {"type":"HystrixCommand","name":"CreditCardCommand","group":"CreditCard","currentTime":1354860581724,"isCircuitBreakerOpen":false,"errorPercentage":14,"errorCount":1,"requestCount":7,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":1,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":1,"currentConcurrentExecutionCount":0,"latencyExecute_mean":1286,"latencyExecute":{"0":916,"25":1025,"50":1272,"75":1429,"90":1490,"95":2775,"99":3001,"99.5":3001,"100":3001},"latencyTotal_mean":1286,"latencyTotal":{"0":917,"25":1025,"50":1273,"75":1430,"90":1491,"95":2776,"99":3002,"99.5":3002,"100":3002},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":3000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetPaymentInformationCommand","group":"PaymentInformation","currentTime":1354860581725,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":14,"latencyExecute":{"0":5,"25":8,"50":16,"75":21,"90":24,"95":25,"99":25,"99.5":25,"100":25},"latencyTotal_mean":0,"latencyTotal":{"0":0,"25":0,"50":0,"75":0,"90":0,"95":0,"99":0,"99.5":0,"100":0},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetOrderCommand","group":"Order","currentTime":1354860581726,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":0,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":135,"latencyExecute":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":382,"99":408,"99.5":408,"100":408},"latencyTotal_mean":135,"latencyTotal":{"0":54,"25":83,"50":114,"75":178,"90":236,"95":383,"99":409,"99.5":409,"100":409},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":1000,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixCommand","name":"GetUserAccountCommand","group":"User","currentTime":1354860581726,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":6,"rollingCountCollapsedRequests":0,"rollingCountExceptionsThrown":0,"rollingCountFailure":0,"rollingCountFallbackFailure":0,"rollingCountFallbackRejection":0,"rollingCountFallbackSuccess":0,"rollingCountResponsesFromCache":12,"rollingCountSemaphoreRejected":0,"rollingCountShortCircuited":0,"rollingCountSuccess":6,"rollingCountThreadPoolRejected":0,"rollingCountTimeout":0,"currentConcurrentExecutionCount":0,"latencyExecute_mean":9,"latencyExecute":{"0":2,"25":4,"50":8,"75":11,"90":12,"95":45,"99":51,"99.5":51,"100":51},"latencyTotal_mean":10,"latencyTotal":{"0":2,"25":5,"50":9,"75":12,"90":17,"95":48,"99":53,"99.5":53,"100":53},"propertyValue_circuitBreakerRequestVolumeThreshold":20,"propertyValue_circuitBreakerSleepWindowInMilliseconds":5000,"propertyValue_circuitBreakerErrorThresholdPercentage":50,"propertyValue_circuitBreakerForceOpen":false,"propertyValue_circuitBreakerForceClosed":false,"propertyValue_circuitBreakerEnabled":true,"propertyValue_executionIsolationStrategy":"THREAD","propertyValue_executionIsolationThreadTimeoutInMilliseconds":50,"propertyValue_executionIsolationThreadInterruptOnTimeout":true,"propertyValue_executionIsolationThreadPoolKeyOverride":null,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests":10,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000,"propertyValue_requestCacheEnabled":true,"propertyValue_requestLogEnabled":true,"reportingHosts":1} - -data: {"type":"HystrixThreadPool","name":"PaymentInformation","currentTime":1354860581727,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"CreditCard","currentTime":1354860581727,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":4,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"User","currentTime":1354860581727,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} - -data: {"type":"HystrixThreadPool","name":"Order","currentTime":1354860581727,"currentActiveCount":0,"currentCompletedTaskCount":23,"currentCorePoolSize":8,"currentLargestPoolSize":8,"currentMaximumPoolSize":8,"currentPoolSize":8,"currentQueueSize":0,"currentTaskCount":23,"rollingCountThreadsExecuted":6,"rollingMaxActiveThreads":1,"propertyValue_queueSizeRejectionThreshold":5,"propertyValue_metricsRollingStatisticalWindowInMilliseconds":10000} diff --git a/spring-cloud-netflix-hystrix/src/main/resources/log4j.properties b/spring-cloud-netflix-hystrix/src/main/resources/log4j.properties deleted file mode 100644 index 91374f67..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/log4j.properties +++ /dev/null @@ -1,6 +0,0 @@ -log4j.rootLogger=INFO, FILE -log4j.appender.FILE=org.apache.log4j.ConsoleAppender -log4j.appender.FILE.layout=org.apache.log4j.PatternLayout -log4j.appender.FILE.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %p %C:%L [%C{1}] [%M]: %m%n - -log4j.appender.FILE.httpclient=ERROR diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css deleted file mode 100644 index 71d5ee39..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css +++ /dev/null @@ -1,196 +0,0 @@ -.dependencies .spacer { - width: 100%; - margin: 0 auto; - padding-top:4px; - clear:both; -} - - -.dependencies .last { - margin-right: 0px; -} - -.dependencies span.loading { - display: block; - padding-top: 6%; - padding-bottom: 6%; - color: gray; - text-align: center; -} - -.dependencies span.loading.failed { - color: red; -} - - -.dependencies div.monitor { - float: left; - margin-right:5px; - margin-top:5px; -} - -.dependencies div.monitor p.name { - font-weight:bold; - font-size: 10pt; - text-align: right; - padding-bottom: 5px; -} - -.dependencies div.monitor_data { - margin: 0 auto; -} - -/* override the HREF when we have specified it as a tooltip to not act like a link */ -.dependencies div.monitor_data a.tooltip { - text-decoration: none; - cursor: default; -} - -.dependencies div.monitor_data div.counters { - text-align: right; - padding-bottom: 10px; - font-size: 10pt; - clear: both; - -} - -.dependencies div.monitor_data div.counters div.cell { - display: inline; - float: right; -} - -.dependencies .borderRight { - border-right: 1px solid grey; - padding-right: 6px; - padding-left: 8px; -} - -.dependencies div.cell .line { - display: block; -} - -.dependencies div.monitor_data a, -.dependencies span.rate_value { - font-weight:bold; -} - - -.dependencies span.smaller { - font-size: 8pt; - color: grey; -} - - - -.dependencies div.tableRow { - width:100%; - white-space: nowrap; - font-size: 8pt; - margin: 0 auto; - clear:both; - padding-left:26%; -} - -.dependencies div.tableRow .cell { - float:left; -} - -.dependencies div.tableRow .header { - width:18%; - text-align:right; - padding-right:2%; -} - -.dependencies div.tableRow .data { - width:17%; - font-weight: bold; - text-align:right; -} - - -.dependencies div.monitor { - width: 245px; /* we want a fixed width instead of percentage as I want the boxes to be a set size and then fill in as many as can fit in each row ... this allows 3 columns on an iPad */ - height: 150px; -} - -.dependencies .success { - color: green; -} -.dependencies .shortCircuited { - color: blue; -} -.dependencies .timeout { - color: #FF9900; /* shade of orange */ -} -.dependencies .failure { - color: red; -} - -.dependencies .rejected { - color: purple; -} - -.dependencies .exceptionsThrown { - color: brown; -} - -.dependencies div.monitor_data a.rate { - color: black; - font-size: 11pt; -} - -.dependencies div.rate { - padding-top: 1px; - clear:both; - text-align:right; -} - -.dependencies .errorPercentage { - color: grey; -} - -.dependencies div.cell .errorPercentage { - padding-left:5px; - font-size: 12pt !important; -} - - -.dependencies div.monitor div.chart { -} - -.dependencies div.monitor div.chart svg { -} - -.dependencies div.monitor div.chart svg text { - fill: white; -} - - -.dependencies div.circuitStatus { - width:100%; - white-space: nowrap; - font-size: 9pt; - margin: 0 auto; - clear:both; - text-align:right; - padding-top: 4px; -} - -.dependencies #hidden { - width:1px; - height:1px; - background: lightgrey; - display: none; -} - - - -/* sparkline */ -.dependencies path { - stroke: steelblue; - stroke-width: 1; - fill: none; -} - - -} diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js deleted file mode 100644 index dc375759..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js +++ /dev/null @@ -1,536 +0,0 @@ - -(function(window) { - - // cache the templates we use on this page as global variables (asynchronously) - jQuery.get(getRelativePath("../components/hystrixCommand/templates/hystrixCircuit.html"), function(data) { - hystrixTemplateCircuit = data; - }); - jQuery.get(getRelativePath("../components/hystrixCommand/templates/hystrixCircuitContainer.html"), function(data) { - hystrixTemplateCircuitContainer = data; - }); - - function getRelativePath(path) { - var p = location.pathname.slice(0, location.pathname.lastIndexOf("/")+1); - return p + path; - } - - /** - * Object containing functions for displaying and updating the UI with streaming data. - * - * Publish this externally as "HystrixCommandMonitor" - */ - window.HystrixCommandMonitor = function(containerId, args) { - - var self = this; // keep scope under control - self.args = args; - if(self.args == undefined) { - self.args = {}; - } - - this.containerId = containerId; - - /** - * Initialization on construction - */ - // intialize various variables we use for visualization - var maxXaxisForCircle="40%"; - var maxYaxisForCircle="40%"; - var maxRadiusForCircle="125"; - - // CIRCUIT_BREAKER circle visualization settings - self.circuitCircleRadius = d3.scale.pow().exponent(0.5).domain([0, 400]).range(["5", maxRadiusForCircle]); // requests per second per host - self.circuitCircleYaxis = d3.scale.linear().domain([0, 400]).range(["30%", maxXaxisForCircle]); - self.circuitCircleXaxis = d3.scale.linear().domain([0, 400]).range(["30%", maxYaxisForCircle]); - self.circuitColorRange = d3.scale.linear().domain([10, 25, 40, 50]).range(["green", "#FFCC00", "#FF9900", "red"]); - self.circuitErrorPercentageColorRange = d3.scale.linear().domain([0, 10, 35, 50]).range(["grey", "black", "#FF9900", "red"]); - - /** - * We want to keep sorting in the background since data values are always changing, so this will re-sort every X milliseconds - * to maintain whatever sort the user (or default) has chosen. - * - * In other words, sorting only for adds/deletes is not sufficient as all but alphabetical sort are dynamically changing. - */ - setInterval(function() { - // sort since we have added a new one - self.sortSameAsLast(); - }, 10000); - - - /** - * END of Initialization on construction - */ - - /** - * Event listener to handle new messages from EventSource as streamed from the server. - */ - /* public */ self.eventSourceMessageListener = function(e) { - var data = JSON.parse(e.data); - if(data) { - // check for reportingHosts (if not there, set it to 1 for singleHost vs cluster) - if(!data.reportingHosts) { - data.reportingHosts = 1; - } - - if(data && data.type == 'HystrixCommand') { - if (data.deleteData == 'true') { - deleteCircuit(data.escapedName); - } else { - displayCircuit(data); - } - } - } - }; - - /** - * Pre process the data before displying in the UI. - * e.g Get Averages from sums, do rate calculation etc. - */ - function preProcessData(data) { - validateData(data); - // escape string used in jQuery & d3 selectors - data.escapedName = data.name.replace(/([ !"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g,'\\$1'); - // do math - converAllAvg(data); - calcRatePerSecond(data); - } - - /** - * Since the stream of data can be aggregated from multiple hosts in a tiered manner - * the aggregation just sums everything together and provides us the denominator (reportingHosts) - * so we must divide by it to get an average per instance value. - * - * We want to do this on any numerical values where we want per instance rather than cluster-wide sum. - */ - function converAllAvg(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); - } - - function convertAvg(data, key, decimal) { - if (decimal) { - data[key] = getInstanceAverage(data[key], data["reportingHosts"], decimal); - } else { - data[key] = getInstanceAverage(data[key], data["reportingHosts"], decimal); - } - } - - function getInstanceAverage(value, reportingHosts, decimal) { - if (decimal) { - return roundNumber(value/reportingHosts); - } else { - return Math.floor(value/reportingHosts); - } - } - - function calcRatePerSecond(data) { - var numberSeconds = data["propertyValue_metricsRollingStatisticalWindowInMilliseconds"] / 1000; - - var totalRequests = data["requestCount"]; - if (totalRequests < 0) { - totalRequests = 0; - } - data["ratePerSecond"] = roundNumber(totalRequests / numberSeconds); - data["ratePerSecondPerHost"] = roundNumber(totalRequests / numberSeconds / data["reportingHosts"]) ; - } - - function validateData(data) { - assertNotNull(data,"reportingHosts"); - assertNotNull(data,"type"); - assertNotNull(data,"name"); - assertNotNull(data,"group"); - // assertNotNull(data,"currentTime"); - assertNotNull(data,"isCircuitBreakerOpen"); - assertNotNull(data,"errorPercentage"); - assertNotNull(data,"errorCount"); - assertNotNull(data,"requestCount"); - assertNotNull(data,"rollingCountCollapsedRequests"); - assertNotNull(data,"rollingCountExceptionsThrown"); - assertNotNull(data,"rollingCountFailure"); - assertNotNull(data,"rollingCountFallbackFailure"); - assertNotNull(data,"rollingCountFallbackRejection"); - assertNotNull(data,"rollingCountFallbackSuccess"); - assertNotNull(data,"rollingCountResponsesFromCache"); - assertNotNull(data,"rollingCountSemaphoreRejected"); - assertNotNull(data,"rollingCountShortCircuited"); - assertNotNull(data,"rollingCountSuccess"); - assertNotNull(data,"rollingCountThreadPoolRejected"); - assertNotNull(data,"rollingCountTimeout"); - 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"); - assertNotNull(data,"propertyValue_circuitBreakerForceOpen"); - assertNotNull(data,"propertyValue_executionIsolationStrategy"); - assertNotNull(data,"propertyValue_executionIsolationThreadTimeoutInMilliseconds"); - assertNotNull(data,"propertyValue_executionIsolationThreadInterruptOnTimeout"); - // assertNotNull(data,"propertyValue_executionIsolationThreadPoolKeyOverride"); - assertNotNull(data,"propertyValue_executionIsolationSemaphoreMaxConcurrentRequests"); - assertNotNull(data,"propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests"); - assertNotNull(data,"propertyValue_requestCacheEnabled"); - assertNotNull(data,"propertyValue_requestLogEnabled"); - assertNotNull(data,"propertyValue_metricsRollingStatisticalWindowInMilliseconds"); - } - - function assertNotNull(data, key) { - if(data[key] == undefined) { - throw new Error("Key Missing: " + key + " for " + data.name); - } - } - - /** - * Method to display the CIRCUIT data - * - * @param data - */ - /* private */ function displayCircuit(data) { - - try { - preProcessData(data); - } catch (err) { - log("Failed preProcessData: " + err.message); - return; - } - - // add the 'addCommas' function to the 'data' object so the HTML templates can use it - data.addCommas = addCommas; - // add the 'roundNumber' function to the 'data' object so the HTML templates can use it - data.roundNumber = roundNumber; - // add the 'getInstanceAverage' function to the 'data' object so the HTML templates can use it - data.getInstanceAverage = getInstanceAverage; - - var addNew = false; - // check if we need to create the container - if(!$('#CIRCUIT_' + data.escapedName).length) { - // args for display - if(self.args.includeDetailIcon != undefined && self.args.includeDetailIcon) { - data.includeDetailIcon = true; - }else { - data.includeDetailIcon = false; - } - - // it doesn't exist so add it - var html = tmpl(hystrixTemplateCircuitContainer, data); - // remove the loading thing first - $('#' + containerId + ' span.loading').remove(); - // now create the new data and add it - $('#' + containerId + '').append(html); - - // add the default sparkline graph - d3.selectAll('#graph_CIRCUIT_' + data.escapedName + ' svg').append("svg:path"); - - // remember this is new so we can trigger a sort after setting data - addNew = true; - } - - - // now update/insert the data - $('#CIRCUIT_' + data.escapedName + ' div.monitor_data').html(tmpl(hystrixTemplateCircuit, data)); - - var ratePerSecond = data.ratePerSecond; - var ratePerSecondPerHost = data.ratePerSecondPerHost; - var ratePerSecondPerHostDisplay = ratePerSecondPerHost; - var errorThenVolume = (data.errorPercentage * 100000000) + ratePerSecond; - - // set the rates on the div element so it's available for sorting - $('#CIRCUIT_' + data.escapedName).attr('rate_value', ratePerSecond); - $('#CIRCUIT_' + data.escapedName).attr('error_then_volume', errorThenVolume); - - // update errorPercentage color on page - $('#CIRCUIT_' + data.escapedName + ' a.errorPercentage').css('color', self.circuitErrorPercentageColorRange(data.errorPercentage)); - - updateCircle('circuit', '#CIRCUIT_' + data.escapedName + ' circle', ratePerSecondPerHostDisplay, data.errorPercentage); - - if(data.graphValues) { - // we have a set of values to initialize with - updateSparkline('circuit', '#CIRCUIT_' + data.escapedName + ' path', data.graphValues); - } else { - updateSparkline('circuit', '#CIRCUIT_' + data.escapedName + ' path', ratePerSecond); - } - - if(addNew) { - // sort since we added a new circuit - self.sortSameAsLast(); - } - } - - /* round a number to X digits: num => the number to round, dec => the number of decimals */ - /* private */ function roundNumber(num) { - var dec=1; - var result = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec); - var resultAsString = result.toString(); - if(resultAsString.indexOf('.') == -1) { - resultAsString = resultAsString + '.0'; - } - return resultAsString; - }; - - - - - /* private */ function updateCircle(variablePrefix, cssTarget, rate, errorPercentage) { - var newXaxisForCircle = self[variablePrefix + 'CircleXaxis'](rate); - if(parseInt(newXaxisForCircle) > parseInt(maxXaxisForCircle)) { - newXaxisForCircle = maxXaxisForCircle; - } - var newYaxisForCircle = self[variablePrefix + 'CircleYaxis'](rate); - if(parseInt(newYaxisForCircle) > parseInt(maxYaxisForCircle)) { - newYaxisForCircle = maxYaxisForCircle; - } - var newRadiusForCircle = self[variablePrefix + 'CircleRadius'](rate); - if(parseInt(newRadiusForCircle) > parseInt(maxRadiusForCircle)) { - newRadiusForCircle = maxRadiusForCircle; - } - - d3.selectAll(cssTarget) - .transition() - .duration(400) - .attr("cy", newYaxisForCircle) - .attr("cx", newXaxisForCircle) - .attr("r", newRadiusForCircle) - .style("fill", self[variablePrefix + 'ColorRange'](errorPercentage)); - } - - /* private */ function updateSparkline(variablePrefix, cssTarget, newDataPoint) { - var currentTimeMilliseconds = new Date().getTime(); - var data = self[variablePrefix + cssTarget + '_data']; - if(typeof data == 'undefined') { - // else it's new - if(typeof newDataPoint == 'object') { - // we received an array of values, so initialize with it - data = newDataPoint; - } else { - // v: VALUE, t: TIME_IN_MILLISECONDS - data = [{"v":parseFloat(newDataPoint),"t":currentTimeMilliseconds}]; - } - self[variablePrefix + cssTarget + '_data'] = data; - } else { - if(typeof newDataPoint == 'object') { - /* if an array is passed in we'll replace the cached one */ - data = newDataPoint; - } else { - // else we just add to the existing one - data.push({"v":parseFloat(newDataPoint),"t":currentTimeMilliseconds}); - } - } - - while(data.length > 200) { // 400 should be plenty for the 2 minutes we have the scale set to below even with a very low update latency - // remove data so we don't keep increasing forever - data.shift(); - } - - if(data.length == 1 && data[0].v == 0) { - //console.log("we have a single 0 so skipping"); - // don't show if we have a single 0 - return; - } - - if(data.length > 1 && data[0].v == 0 && data[1].v != 0) { - //console.log("we have a leading 0 so removing it"); - // get rid of a leading 0 if the following number is not a 0 - data.shift(); - } - - var xScale = d3.time.scale().domain([new Date(currentTimeMilliseconds-(60*1000*2)), new Date(currentTimeMilliseconds)]).range([0, 140]); - - var yMin = d3.min(data, function(d) { return d.v; }); - var yMax = d3.max(data, function(d) { return d.v; }); - var yScale = d3.scale.linear().domain([yMin, yMax]).nice().range([60, 0]); // y goes DOWN, so 60 is the "lowest" - - sparkline = d3.svg.line() - // assign the X function to plot our line as we wish - .x(function(d,i) { - // return the X coordinate where we want to plot this datapoint based on the time - return xScale(new Date(d.t)); - }) - .y(function(d) { - return yScale(d.v); - }) - .interpolate("basis"); - - d3.selectAll(cssTarget).attr("d", sparkline(data)); - } - - /* private */ function deleteCircuit(circuitName) { - $('#CIRCUIT_' + circuitName).remove(); - } - - }; - - // public methods for sorting - HystrixCommandMonitor.prototype.sortByVolume = function() { - var direction = "desc"; - if(this.sortedBy == 'rate_desc') { - direction = 'asc'; - } - this.sortByVolumeInDirection(direction); - }; - - HystrixCommandMonitor.prototype.sortByVolumeInDirection = function(direction) { - this.sortedBy = 'rate_' + direction; - $('#' + this.containerId + ' div.monitor').tsort({order: direction, attr: 'rate_value'}); - }; - - HystrixCommandMonitor.prototype.sortAlphabetically = function() { - var direction = "asc"; - if(this.sortedBy == 'alph_asc') { - direction = 'desc'; - } - this.sortAlphabeticalInDirection(direction); - }; - - HystrixCommandMonitor.prototype.sortAlphabeticalInDirection = function(direction) { - this.sortedBy = 'alph_' + direction; - $('#' + this.containerId + ' div.monitor').tsort("p.name", {order: direction}); - }; - - - HystrixCommandMonitor.prototype.sortByError = function() { - var direction = "desc"; - if(this.sortedBy == 'error_desc') { - direction = 'asc'; - } - this.sortByErrorInDirection(direction); - }; - - HystrixCommandMonitor.prototype.sortByErrorInDirection = function(direction) { - this.sortedBy = 'error_' + direction; - $('#' + this.containerId + ' div.monitor').tsort(".errorPercentage .value", {order: direction}); - }; - - HystrixCommandMonitor.prototype.sortByErrorThenVolume = function() { - var direction = "desc"; - if(this.sortedBy == 'error_then_volume_desc') { - direction = 'asc'; - } - this.sortByErrorThenVolumeInDirection(direction); - }; - - HystrixCommandMonitor.prototype.sortByErrorThenVolumeInDirection = function(direction) { - this.sortedBy = 'error_then_volume_' + direction; - $('#' + this.containerId + ' div.monitor').tsort({order: direction, attr: 'error_then_volume'}); - }; - - HystrixCommandMonitor.prototype.sortByLatency90 = function() { - var direction = "desc"; - if(this.sortedBy == 'lat90_desc') { - direction = 'asc'; - } - this.sortedBy = 'lat90_' + direction; - this.sortByMetricInDirection(direction, ".latency90 .value"); - }; - - HystrixCommandMonitor.prototype.sortByLatency99 = function() { - var direction = "desc"; - if(this.sortedBy == 'lat99_desc') { - direction = 'asc'; - } - this.sortedBy = 'lat99_' + direction; - this.sortByMetricInDirection(direction, ".latency99 .value"); - }; - - HystrixCommandMonitor.prototype.sortByLatency995 = function() { - var direction = "desc"; - if(this.sortedBy == 'lat995_desc') { - direction = 'asc'; - } - this.sortedBy = 'lat995_' + direction; - this.sortByMetricInDirection(direction, ".latency995 .value"); - }; - - HystrixCommandMonitor.prototype.sortByLatencyMean = function() { - var direction = "desc"; - if(this.sortedBy == 'latMean_desc') { - direction = 'asc'; - } - this.sortedBy = 'latMean_' + direction; - this.sortByMetricInDirection(direction, ".latencyMean .value"); - }; - - HystrixCommandMonitor.prototype.sortByLatencyMedian = function() { - var direction = "desc"; - if(this.sortedBy == 'latMedian_desc') { - direction = 'asc'; - } - this.sortedBy = 'latMedian_' + direction; - this.sortByMetricInDirection(direction, ".latencyMedian .value"); - }; - - HystrixCommandMonitor.prototype.sortByMetricInDirection = function(direction, metric) { - $('#' + this.containerId + ' div.monitor').tsort(metric, {order: direction}); - }; - - // this method is for when new divs are added to cause the elements to be sorted to whatever the user last chose - HystrixCommandMonitor.prototype.sortSameAsLast = function() { - if(this.sortedBy == 'alph_asc') { - this.sortAlphabeticalInDirection('asc'); - } else if(this.sortedBy == 'alph_desc') { - this.sortAlphabeticalInDirection('desc'); - } else if(this.sortedBy == 'rate_asc') { - this.sortByVolumeInDirection('asc'); - } else if(this.sortedBy == 'rate_desc') { - this.sortByVolumeInDirection('desc'); - } else if(this.sortedBy == 'error_asc') { - this.sortByErrorInDirection('asc'); - } else if(this.sortedBy == 'error_desc') { - this.sortByErrorInDirection('desc'); - } else if(this.sortedBy == 'error_then_volume_asc') { - this.sortByErrorThenVolumeInDirection('asc'); - } else if(this.sortedBy == 'error_then_volume_desc') { - this.sortByErrorThenVolumeInDirection('desc'); - } else if(this.sortedBy == 'lat90_asc') { - this.sortByMetricInDirection('asc', '.latency90 .value'); - } else if(this.sortedBy == 'lat90_desc') { - this.sortByMetricInDirection('desc', '.latency90 .value'); - } else if(this.sortedBy == 'lat99_asc') { - this.sortByMetricInDirection('asc', '.latency99 .value'); - } else if(this.sortedBy == 'lat99_desc') { - this.sortByMetricInDirection('desc', '.latency99 .value'); - } else if(this.sortedBy == 'lat995_asc') { - this.sortByMetricInDirection('asc', '.latency995 .value'); - } else if(this.sortedBy == 'lat995_desc') { - this.sortByMetricInDirection('desc', '.latency995 .value'); - } else if(this.sortedBy == 'latMean_asc') { - this.sortByMetricInDirection('asc', '.latencyMean .value'); - } else if(this.sortedBy == 'latMean_desc') { - this.sortByMetricInDirection('desc', '.latencyMean .value'); - } else if(this.sortedBy == 'latMedian_asc') { - this.sortByMetricInDirection('asc', '.latencyMedian .value'); - } else if(this.sortedBy == 'latMedian_desc') { - this.sortByMetricInDirection('desc', '.latencyMedian .value'); - } - }; - - // default sort type and direction - this.sortedBy = 'alph_asc'; - - - // a temporary home for the logger until we become more sophisticated - function log(message) { - console.log(message); - }; - - function addCommas(nStr){ - nStr += ''; - if(nStr.length <=3) { - return nStr; //shortcut if we don't need commas - } - x = nStr.split('.'); - x1 = x[0]; - x2 = x.length > 1 ? '.' + x[1] : ''; - var rgx = /(\d+)(\d{3})/; - while (rgx.test(x1)) { - x1 = x1.replace(rgx, '$1' + ',' + '$2'); - } - return x1 + x2; - } -})(window); - - diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon-20.png b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon-20.png deleted file mode 100644 index 2833fe2c658d3634c50bb6c4da80ad268863bf71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 888 zcmV-;1Bd*HP)TlwD|>WfaGMPv0bOKHB$9+GcjlDz4UTLbbYB6FWqW zLzpY|6Y*xuffx2d&k)AWy540vIBp3IPm=VpL3q`C=uaChNDt491h?7=);{6(=b}HE9vya*>huk zu_MDGVy_2OS2|QmdEa{Tz=5rI-ut5Hn;NsWj-AVpTb}09{KTmrz8~2Cb38t9T|lLj z_rv$!?Q4&8cg?0Z67cH;>NK*pF!NW6zvrj0=YGt6_wC`mCr-rs)-Cys*L(MOJoHT0 z*>p3lcW9VyP=L1tbq#)IHinoiX?i4VeH;u1Pg|BXSqWGJ(B9s@>7MQ3mu3sM;tOb` za&R#XRt6R`V5LBFfzf&w#w}s9BXsx6*L1ie($N`g-WC|mEA%`RO5oI>MnSOzb`e$z zV3-=YrY$r!Hbs?EZV_3n2sHg>i^FSR!8k8S7jK)!0p(}~3BrTJ;hZOu4pz|hNJp$v4^ zlw06(LTd2>%gLol;BwWW#9~KI{V_f=;w~)X)WFoi?}mW8e6DqY>4C+Imr0Bbm8NEA zKNXQuRiKEh4#$UIn>cwiSIQ=FIG|Q9tIiFz9#~pR^5<{IaLQ`7b8OriRI1{ZU9~Cu z_U(N>5_#aG*0%fWeGN@GT{^a%V`1(B7P(4o)1+P!ne%4(_$PA?sC+aTedzI zm7?~lQhVOJ5-K7U1?bUe^rjtcZGpAi@8BAFF!;3`tQYwyBy#2n8ScKV|5@<-d#@U> zn!3Py{B~l6UQ^^)NQ!5=<@i&Z``>}O{{<8gwu5(|RmJkXhREQ3BJo}F z>&34k*^p9u4#rYEBIlk?*jC0$=SQ#E!|PE5Jf9f!ybY1H+*Qx!M#MjjDeibEGCS-5 O00003P-Fd&d_x~*ls6cAY zoY}p1cdvdHkt#~kD2RlJAP@*eRz?C0d>{Sq6CM`$TCH7^2YiDym6w(Pef;-P&{diY z`~=QLR#6ge4GI#89Kr{6!wLi<2gyo^s(a*Ic6nw{Yk8JF=S6fL=jpU-X=s+KXRA{e zehwMLXKniSRTdtH4TgjKmjKt5PDlQ2OsUnzL(^$qi}ydr&JixN;6Qui6%UaBZ4`I{ zIk8T4nd0IHrbegj^v>-Fo;&G{2yaUJ!KrK=jf%_nyqK5>tclpeU$?&7ytGOp;wYR8 zD*sdP9s=*o^oM$Zt?(2NQ1oS>f*^FRY7p32KQAv8 zEM%2+3$d-Jl0h@UUJB8`R%zwW*PKUSD;f&!0EsSpLoP>FF6Qe#H8 z1=pMho>veUksuEgsDJi^o#%ksy@mLjl=A01tHk#dxDJu$05e#;@~i{$pf?ce^48;Z zIdB_W>>|_{-^GA7Qz1!)N`?w^aNiMRT902{UCqJGJwG=mMwv)X82jU#ucHPlRw`1e zD5E6OCJP%81}{piP=qhn($jO5Bx;B<%_4E;c z*Z7<&boY8UGh?vDu%ePtVCPj{7z>I|c_U&6!b915$6+S+GL1}3? z@Iq^AYa4I+a&!yz?3a^zX+x8f$ZBe8F>!HhU%rSkr<-|tW~Qd%L=Bmu)7j7;8rfw% zSSbs?{ry|q>4mabWQUm$42QOb{3^X83Wv;@c5-p?v#TrDoK03)87-UJ!E%2%R)R9I z!naHHJ9KsOm^qL41EbYUo`t1lm;%kf+#II7ynG%{vA{IQUzHK}$PJPv$TbFWhU|DZmYMuJ?cEcX+O!2qA0OL`Z#Z z`W~T-L~I0Bwzj6HxVII6yK>)fgi};hth^d2@6yb#Q=<7ykhCn7#p~1^T7;+D#+p6Y z)SHwN2%2zWqskLa#X}$O>kzEAp_>mXv!C1M8z^}|XmQIaVi&4TlQYptBT_>_MfEbp zg-882GCb_D7fB1O-tO!3-NBvb;v&Bl{xB4<34QN>IE#GBkEeHIwu8cs02iSUC&$-Ug~PNejcECaMlt zUjxG6O~S}Faty2{E~F&KKoi+No-)T&nK?gIl42BeCYfdM&{*bruOeKWl~ni|}{&7w9PGEJn-_eq*BRc03u0Cw{)#4W^|ci^AGUY=Jg zv4sq%|K%~)0ahWDSKJllJsGP08iUT0>+9n<{;Pt<#>OL|oXI^F*YShhky^K#6^2{| z7D)!yl&>Ct`)R5ho97fve-qUlq(OM+qeQ#6Lx?ZGYYXZbPP*)B zt8JY+o;-|r=uj^6j2@;OHILBOKjX5&Rz~!WufGt)3J_j+h@hak^m{_RX_ z2M2$A544rEqU!3{F7HP+4vs-!L)*gcDb<~uL(@|u+4OPeogds5Rj0_c)g)W2(t5q1 z=DKeZ9Ok|hanQo7_&*eYz!S;I6*%&{WOLrr^^E~a@FO$m%J-&{X;-Zgpd;s#GY zMz?A`J9`C&QM6t;Z- zRDwY@A(@YR&bBYzSZ=F?40T0g7c?3QSbfd_DUf?=QwieJWE6DYt}Z#kHzvZDM+wiD z>>_P2tB{$=8Yw<3LP?BZmG)bct(nBAi4N}m{=PXIK}Tn&Aj@}NGsXFp1`DLsDuep& zrly0XZh3nD!s22J4-1RKLk$)u@m?H|`OCv)e!rgs6a}=Ppx}nv`nQYK#&95YEpBK| zp;L?B6z99$xC>vJ@|JdHvSgzB9Be^<{1KOR`?eStp8s z^+$hl4AR3@#7!KxG<~YE`JBrPw=!O`lkk_sBApnDVsl5wMBupW=;+wMS7bVcT>0hM zsQ1V&EF5ow4-%8}^p}^Pm|$RFptUu;2n*oGPkS86N~ zcbI*tO;%}y`&YwbVgJ%>t*~VKVXWTuN6F{S@T3i=5 z>WFE9xouekylwAQ3{;=0XkYf$a<$_KlPZl>RRbr6Orr6ZhWHF^3X?VF<%0t%kb!~0 zc)jMd>3oUe|fw{W_zZi53 zXL8X3KGA7EA`8ib=c7bYQ@>Zs_Hx;F?7LlV;!tB^=;PN8(l8_%SVJZa6Z}k3P*zT! zIX*oc!o_U=W5>{yfCzVmE${a;IPF_w%? zeO;YMz4p)A+S-aItz}m(`;F1TL1>@@07~-_YH#PyseHLpmPD5=kS;n9?H}(iWRUOZ z7o{t4B>XEa--v)MjpQRteBn;(V$jO)&KC6Xn(H>LEWJ6|;GI1!y`4=?fM=L)oB9t) zi;}#t@}-avo^uK+Vfzrw-p2P(3Il;J_6 zb7*6OSPUNMSX5wSIS7HeF*h_625494u@R>mjFhM_wD7$6-wFS+b{-X4DAwns|z!_evl2*21972Q2h$RWJg$KLD+%eN_VP^pVTy22h+ z+`~JT2hF`s5TEZ5o0U}_1_$YWf1&_C5Je-neT!!0vq>D24S|(vLQ}h@)bUt!Z3UO7 z5Vft3SjOw=>arpSo7Rv1{o8a0)>4pb7fzq>HRSCIYl{iE*l53F5R1_3^K;sCT{if- z-JSdX{@#0^`(E)g1skO=|HBOH*oxAAY#Lbj=i=6348lcn5#Jh(fP0lvD1&m1x!25| z&x*2-pq&`;9TkHwKIdm0#>a{nN4Sh>nioHe*|{PX)CQfU6T$yAReE|vKv$xX@b~`y z3%eOnG|%egE3&k|Kp7e_PrU)?ANKHgQ>N3gr0pnHS5)PKBr`` zscuq_XH{fTkt$wX=Qj4?<%=1oS*%8O_yYW7ZoPV1xGw6cf$(Hh*}Usw?9&nw(nhXp zNI*81bVgpIjMW7u^CzK@Fi|Q8xGOU=Gh|fMj;W(dvxeo%^K&yFpBxuHMVe&Cw4Unn z@>BVCef#3!!(W9iV-W4v-7kCr*N}=ziqA}~8~r5i8=_4WZ*3$3d^iSRx$al>BrD~S zjhOH2)9}I{Y1-eb>a!NhFf#b>{2m#Qk^Ny^AH!M1UrILbi@A*-u|GbaFA}xsSUw6wGYGF7yJM3u;%3*&!H-NHi3zU`3W{Dv+acDI-~ zAQhO8#F6-euOxGU`ft;HdkUzdpti~I#D34s?Jc!JkZy-non$%K*~x>!vQ4}ko8+nwB*|Paiia=v>EfN90~044ZtEmpOp6vP#pSJ zudg;cfzptn)BPINr8+AsYopD~RCQlXSk5@Z4fXPTw(aqF-`aK(qEJ%|Wm1qpV6yoS z-tE8iaO6CTxmL!(sHf`TV$=;+1J)HQanmev4w6bwxY;4AgtR`OzXduEQu)iW%F5`- zNCaG5+|lE^>4tU0(Eid?wQdtvS%_7j@Z5%{u!njXDt&u-be>>pO;DhzT#6kswFl{N z?6CMJ7*iBc1bT>lzvkZ?G+RVLIY%AEDX&RouikoIJQEHgcYHi-r4dbdVg!Y>X-@M% z$JG(KM;a8aY*l;_u>XO8o`@UKT*%aQ0eh*}YA?B*3l@D50nWg6mX*Q5kmN0_NC~A> zxniPj`-3D1r|YiAD;zPOIUBqC67H@@;6!KT;81U_xpPWUBX~-+GW+G$$GnBpJF|^b zR4HCbkRWf{sr4DV!2By2^0W^+xnC&cej}B}J;fQ{JMtCTGDLXkYE;rz3T6f_BcnFF zA~`r4eaJ?_9(#b54jU1OYRy#JZ!2|yK+Rb9>z4u`lPI|>*K5CWSnRtM+1__MpDmNA zOeX;w5g8e|?%R4xFOFJyir%)P6Zp84_J_T`hyA4rdflf6{6Ab=Qj92YjlaFaOI*g?Pv`Is zy#CrGN2IAyTiI7caHvni5Clwg!ON3BJ(kr>5JDt!OTE_a^wi1B zs^_XY^sE0gfgUz-sd1b22;l`0i2N73-dVbze!TQ&5=MVrZ;6eILsiye-uW1`fA$_Y z1M4Jw^sQ=rPW>-67hbzJwX}37m*?k2u-2EYx@!dUKS+E{ANepJOkXW?<9^NLJ+Zm2 zB7>DT2-e6w;vEj~)w1|%8!7OAWbl!zFR22?F|a9`~ypIMids zLEsDvEi9yHW(lYsGyfAPpCVl&YrsJche~V>=eL=;-R;}?f&keA)FE~nbDmFI6Bv)1 zH`!dLP0hA>M1~9r)n5PpvB{T3W3gV#sT>VcY2 zF(S*T*SwYc6}}k1a=kW*zxD7UDz%nPaTmI8qlhr4J6A{8%DNa>0m>2(Wo50Gczd@` z5BCSL=c4KTL;p~$OwX69f#(hD7bddo3RG|)d0vm*DlD0`?-FK|Hy~JeX16$IVuP)T($q`2u-gmrK^$?T{Mi%Gr1iivXhMvB1_9rkd>78aqv z76ak%{7j+3M1X~ZBOoSrxz0u3TMk$gd@?BQpcDC-V*kY$kOKh)D^O9+#lStg?N~0z zYTDZVqTaK}usj+*V9+QECqs0x^s5L>t&=Y#n_ULdAxqbvYj$gY4Q7hIm)f=TYi`KC zzecpKMpwS&ua<1|Cua*6|=MLt)bEYnE>=E?U!vPIoqSUB)s zA);S9gy*HV`{ATY$*lv9AHP8u^W@WzRh*qEN0o`OGWv~PwJ6x40@4&)Xu z%M>0xM1(3nnir&UuGJhockh7={6mJrwUlPIzEZUP zwj3!Tp<$6v%MSj;4lN)Vypgvkm-(vf((|J33_?Q=R9Oh%UU=*8ys}-UfJarNgZjN# zgAuv1Ypq@Vd8GIUPIBcX=4`gdrtRn$67g_e0+GA1N7hK zyp%bVX(j||sgQN4vLf+Hofx76QjKEOTv5SHG9#K|J~P-f#%eZo9rz0NDk}rcRpnks z4N(k`DY}Tp_Y^XjEL0*s2FdR7SO@28wS;Wykb>6M<$X(8`fEL9zxFhojpotMbFOa& zhs=z!#b7`xRfpL7)r=b}l?ZmSl}n&s<(6MAtlo61^b4MOyJS<(;2yIduJ5^%|2LR#mlMvdrVIV`eDl(4ihTz!Y__Sb1KB8(hVO8d@aq z*Ue^nEk zJcRt5edf4G#6+aCrJ62cpEu*{O07~kDSG9eN-8&)?%m-Hk2-WhkRde5Cw&o}E`v-H z$+@cx>2mJhjGuOYL%THD4VpcScykDf{jfqa?$l8d);W7SKROZRdS== zj!>DXgai^d8Qs60$8k4(=gDb`!(9)=hD_?h5lIp97Tj-X;qo7tCmIi`;)NYMbmCTh zS7MoQ>Q48nkR~&oYDqk$!DguU{ zs)zVP0yxlI9eJ}k{xGT4S~-O~qhyA+t9_i@t$pKByJyGsDIA17JcP1`W-Fb^7qLaG zyZ~B{*gk*az$^5=JB|5izV5r4L%EtGsYSx9q#%zbA7OMVZ#SrfDa*}TaQS0BpweHP zxEU=QgdUjkX83fx>5dg`Tw9}?PdyOx zpj)Pb-NRU_+N`WO-z%;V7hhB)q+Q*MLXO;U`$mjhLnldmOTmpD7`?H5rNf*kl3(mh|5|128c3hyox z`a=&>EI7uTIl|=VSzkzc{8B}VVAZOmk9^CEfQ@V!?1@h2SN6Ez$jx$+fh{(eX zk-LU&gdQv_ZlI<9>di@F;hC{;xzUv1YToPfo9&}1>u69T&fNfp*Ot{*78~pKi7k2|>@!jb2$;0JZ^q6FDk5QoEDXqDXR( zxtIsLWNbZRbe3m@2)!D)?>yZdvw#XrjFmwU1$3iq>-{YJSMr&-qo(MbFU{ghdX4!n4}}7x z{Gl5Q>r$Ex9qDFPzsFDT*xZ}kWUvaJcn=P>r()_3`{SavTSziRhjwG&{;IS>3cKH)}t3e}bS{h3g$`3b_T9>lG1 z{eA?T6`a9HwY6lha-MA1sQy{WhP-st2AQbArD+oy6HYu6;(g>B&4>+@8m!R8so@gH zO-}N#iXv3AQK~YP+iF_VGj8=MYc3p$=T3aSZClNxA{%TyGF0Hj)M7JH;#7rQ%igjp zC}=W#A+0f}kj6Zfon9nF=mAL1sz`r5$!5kV|4cG$VJcA-o*n||ux;Hkm8v7l#VF;R z=Lpm^7%?ns)lS(2D4D~Yi&GDQtM*dx_znxXLAWj!`L*9;ry$<2W3jDHLXgciHd2HH zwuny+wz?h$4smmt8n~Vgo`uR!n|P%^Ky`lUz!c^y7H%@M=q_DcP+=IfaWhvP$SGDviRQTaEcFVnjHte0qd^WQZhI|M>ZX}%(De^P*l4H}Xs2+3 z_F_JD6qtiyf4&Zvreu_yZVCIRi$s}jkOS{$*1Bo+v<365k(|2nt0>2Ahc+o|Sqly6 zW5q9pJ*1^u$Y97gIP9QJVrjo~)yjxv)eQb(IhC>BD!IE9_#p+333fQRzm}bv7cA-{ z$c>V$2~TF_K=$}yFS3X)`rp!5twbxlVSXt!(}-{=va5>(RQMUbiRP7AxPU08|v@c?+EBdw~)5hlb2stQR8AEFtdRGaah>S_LU z*hRaLa$J1dEX0uH8q4>BCKcA8xibg}9chD^rX0^ejnAOA8g+DHTM*g?E7`L?7Wwwa z`y&!C#f#tlYL!KkX0hnA#=|5{;`td-10Ft-JEcjZTIQMi)fiess^X4kB&Z=+7c)=Q zVlAB%I*89;Vi6HiJhab2Qj968fyHWzSF-ely3v{_q`(6#CtIjepkCpjAr=ue1{^VY zUJ1yD9SL5HGWu|eSlVfW4MFFkR5*B(Xp-6pnyEOqOyOszpJi@Jc8zcg3M5IRcVm1- zcurmQ(5#4|W65xZ@u&Ymq)DdCtfurgUs%$^?f5N>q5&^*)2W?#!{Fj;BN)J_3QNTZ ztD4U><*3t*5fnr(7|@pX$-G+=A&o4e*J7LlS_Eu(HCaWCs>&3`ciKu-33GNoOmz=? zVUi{xIQ%ORDI7fs?1oWr=6yEZ29On3QMXP{la<{vJ0NH&Xx0W zS%?Z5-pyHdIGR5Wg-gDwrtJoRy>KV$t_$ZS)e>MFubg%8+C-c3hNA|0FO9k5nXwTA zhk`=I`mQkPXd=&4KI@$XK`1)1K<`XF`B{sZ#TQ)SFsR}bR1ye-us<4DpYfK7%4!ki z1kF?j7AZGu%X-pTG?&I$G-5;n&cPZvY2t7}jkMf1w1%vDWQfp>reT%w`4>s;^ZE@i zECrWi1J#urTQ-I^?ty$#T1XkDlW>koY{;Yzsk$uO@fUo7hYG9v-93P*886zxo04eFwRo~nH2ZRhtt}D&lDaVj$ zJt8W7@d#BbtqHT;%db^P>*_^-l&~*rA-#-LDC-$DlkLr*ZH@ZvAV`> zHWYVus0(lVpb0=|`|gKyVQ86CTi#n+8)*OE8`GvZqI{ZlA+^#@PO6hMzzP9@mw`r#_qv6F!!k?z-}*`9^U8 zCY-NYXq5#r#;YpqE*sqMv}GSqW>d%Jxh698EJr$55 zSG=6N*9-6||Dzkc`RqXpXmji!L-U0^kEAGQ(_THaN;q zqLfXH+vb}YWl?xEqh$q#noW$W{=6_qc1CE;gDMBd59oW}|JB_kIM>FeFtV_CZ!mo2 z5r7!Gui|uHyD1`jvnI}PJi-I?FmpByyd_rT<*2_LV@|Oho7vtS+MW%(+)BPiqFCyD z)bOV{y|T-k4$Gp`O;_1Va4wSc@3yoB`h=H=&2uVoY5%<-?I6RkPf77mr38bDu2MFL>S zD`n-L1-_H@zP|btz(A}|ot>RQ8W#+i3Vid2^ZkOR)QUeBC^lABajsEmVrs2Yqx3?d z>L(8~By{z!HV`q?ireoo%$B^O7lA&sg{zd!&(cOba9va3JCsO~3JUnb=%u5#PZ!%5EDhwWXl zLu1nhs}B)Ry98L=4w6? zxh3W0ku^Uhy*Etj3ruualfx9JN21l~AVnYqu9k;5RQ_J*){BS=>&OFPHeqYALaqW? zpyDr0$8PfC`f$m3r`LSyGSrnNcuzdnq<8Z0_^8zfOepQ`ct!^)h`}pf-!7^FMONk&vy|4-@ ze8)M##y3dF_kwK{>qmG)tM3=CQW< zzi1er*g%HbuhinUvraoFH9Y-3>yQ`z_$vCn}W+-iDXhTnYB5Hrb0H4|oh_8tUs)C6CoLHDRwbEVqwV zf00!l7hAq?db*`1@DfKDCpQ5-r)fd#&*YrV3lyBVYMd9=RB8m*tzFl;y%sK+q8JzG zOGE2xH!y|M7@s|<)i|sIE$)`uVw8e{LR-EB-MM<93eOZui7V8flcM-MC_|?sX=&-r zJrQ9l0O`7NYjsH*Cy-=KW_qmZ<10Ylf+$0XK@1tmia7fh-|K}ZtR5$c5I7Ab4nlv5 zQwDJL&*SkqPyO>Az!7=Eqhv)SkK8rVR8 zc&JjEva{QWGc%MBN>GfK$!%#Yvqqfr(G&YY`i0k4ULL9P_V`0HhJun3pwg&6${|t^ z22^Q;nY@y?&C{o)r)TEpqq#IPPB`@hmLjZdYB=S$%`+HhZDm(jrqv;ftgwB!H5YVj zh`=2RR>4f8pdT?l#R< zqDeNY$%Uyg0;J>BuMb4MbSr(Ez_cSHHy7nX#oo(nO>uikw}8{Wok@L$g)TGj47tgc zraaa0ji4^>TT_C`;&v?rrpY>ePy5<4>?KjfyaK|fiB!mtax>*dRyWMLXg7X7zVUU9 zozX+5nD}^hKE8^ry&0B&gl3yE9o8ZM?O`rM|1q2?44{nd`ph@p?#1A-SVtAlB}&m``Zg$U;*5Pz5sLj`8?!m;5jzoyeTQXT%q{SpN+yxXi5`b?-j02Yso}ADP3=Eu|`hCiu$v=esZxoRzO_~YyKAtJ;dY00Y@f&4> zX=1NGRIU`iwZ$S5K9ae&ZfB#PFfZ-BFP}Hn;@l}-ENvM|Z}B?xYp{c$>-L!t`9Z6X zO&CHc-uMVPc`MJ@O|&owP`6v`H+5lvg}ghSVHXsfnwv}Vc3_-l3>q~U_;4CqL+W?pd%0wCUzQid@UiT|v zs~NADp-=7lS7Em8L_g(W|Jx;eOd(J5R__btYCvJpIn*7Ob6Q{jh1+;LWqdxJu?^yI zFv`Gi6=!flkz~6El?Qt#Jd*zS6CTTP?5N`3* zMBMgOLE`Xz^=2dZWMo=K)tn*dAC?9LyL|K1P|&>`Qy((Vt{cEg-0qKLW@aK>`qYgwkxf*cHz(rR-y<@duk-qTH4y8#hvNYlA;G0S4=D-@o(2{_r5PY zoX8co_+MRMOm|sxcQ10p8g#mOcHiyx0vy8tFgg`}c-j~rAHOAR{TG(l{qOVr`QOv| zP!fJO^FZ%Dw_*UkiI6JN5VYj+wHh-00!$*Z5}HmVOXMH;snbFZDP5=?w+m4rf1JrG zi%5MY+qTs-(~wuOdkeS>HiqYmt1#0H#OzzINMloL*hl@@8Ch9>xEY=$Xp-Aa{%sj3{`aam!v0%p zz~M0y0I=ZJN{RLWfDI^W2Fl+`Q^(9VqAD%BB50^4EQulT=U|IJm7C*#&Xn^_@=jCz zlpKm|vR>=%Z^8;~Z)E5B+Yz20UzpeEc?mA9FFO8}`mV?=)L4Mj-GIS6ABP7xD?Kio zm;d|Rs9i^-05YlmE7Q`0)1hm%JSu$eSTgO1`^CyEbx0f1MNJ?dKmRO8Y+71cFXEtB z;Z6&R?QC=kqp0RE`if$6BXwuE)V(ia*)+#}hdy5FX)elAyV2seiuI_cG&~fZX5&ZC z3l3_}`*8n>h12vzFlMC0N|!hHt;a7PWE>s$w0*F=1HFb zxK@(i^0J+I#pIu`%_m*y)1rP8wwk3ZR!M7wArl3)07~YwTfs+b@B>Cup1;9%gA2wq zbBY-%kR!+P{esz9R;V?V)G$W~Ul?FYOG|ly^Lr$o?D28(qZK#`4x_uSm$R9P$c;O7 z`Q5LY0{m%0$a9r|F?PhrJ}|BI6nci?q61JwYYsWe#5#)E1{n^gxj0!yo1XoIC=mhh zx>r@!Z8=s!LZNLZpC1EqgsuY_-)SRnTisV$J_oq&hZ8&k&%;tB`kGXAlpf` za_otTiIa{iPZ&|T=R65YN51@-9xqkyH@Z8cIzk>4 zcvD++wcK>!X6t-7oRbBz!Sy)h&o|jidHe0Y^PTSu3D_in^a?O3z!3>ds_g|+Q@~KD zz$k4#RICs}RwtbVJpkau{EgOfP2Q9x0Mj!|I3jW+Q?Mjyi%Ac}$>aWUJCc<=_x4(D zg0v$RLxL##5>i!5S_z|2a%ss8R^Q1G{NQ8pJ6AKuv(o1QvelX9U|8QQfN1M&|I-9q z68OZ#=3l?Y0L2^-n7~#VPXd(Td4TK;3zw+s9xtB%kNh(NX#0G&3;^Z6SZ|Hr+A;*l zODG1++|cee0b>e)H4Bt%Kl1^MAr4;i*&EDKX7%`|E?FaF{y9EE zGtM)DBdd*8yiNxZn;m@(D|Yxx;n715+xA%#BJt4T!3YS_C{IUvyRSnA&357rbmSml z^#0VA@@GB(UF`S9#$>ne%YO!r($W!w88iUpvM@Fd0Q6SNgqWpqpPy(*U2{WaP4ewt zV067=vqg10j#S-Xbh6HYgG+6RZo&mdf-^`(M491E621cN#0N8A_ zDrog%Am0D8J^)P`a9LEq5}`n|FZO4WeTLQVf$`eoh+r#A39HigGv-ryi105YKi!dX zqed@reMSvnqYD25ia;ESK^Fd0O#s0G<~Jr;CFh?-?)fi)CfGX5GW|P*DuZ$bNBn{d z<7SQRa>(YZDTPDNG3h+T84D)!wg2MN55x5GrT2dQFNaxG*cVsvM-44@#R%wxGL56{ zcz&aH!taRfsd8lPU0q!O*xsU?@X$di=L+Z;j_LfT{w##-zRW0s_eoPFVj!e!F_ykd}Z)*ogeSgdjnYFg4B zOnRt~tzMyaDp4o0kh7fm)t^Y_6WESKo0t}w0$7KJhhvEZmuZnvNBBlezi@A|z$Nwd ziQ*;ADuktj>D`nSs$dZU5^f&8;6E|?JbHy3M1ddynmTgC{c(VTMLzsC3a%WoxIX)hX>%wz||AviUVwAavT|P%?83y0PoDQa5@+q z)dH5gHbVgJBzZ#Ri`z?>OfA8KW{Ykg7Wlh{l-MzO;Bi428q!4 zD1&l?0RL5Y7Gp70qRj85B`FR^kKp8+$Hjn70?S6(L>UjMJr$IA`c`EIB{L_lBy*w|tfgBT+bg~$U;1~nwYC3CkCRhV zUx04y_iyyKx3>+)5t6{PpY83LK;@*tB+Hz>ziO2)DVN-NZC%_t0nKnMW*X0~@LC$q z`%=oHzA2B8@4N15DqGVA|z24 z@Mi(dI*?obqq)1%Q*g1_NB?3k?ZJ$)e43=RCe)=0qY0ti(c~|7+k-&10ri{YwPpG{@*n1cxnJr1}M#-*)d|0Y8piZ7}QLt%u)+)NJVxXAHVUQ?6*&> zH`_H(@=lAu_WpA)Hq?35aUKn%aJUtgklqGH0IUR9!IKW9LKSk-_)f{3cbd;<{4`3D z=@vTnmWg0WCM=yv;}R>@BWc#7@cITM?PnbGG5bgAkgyWz3K0DHq5=6ABm%?x z&Qbj&GXMVlt6+>YS;;q0i;j46BLB~oW@;K$FB=_*LSUL$wH#&bsoTm~L`})4Uz(uL z$(&|%4P;oMA2w^HftI~Yu>^#KKL7&&unPgUN3a0;KJP~fZ*>Te5m9|Ay!SiI4sGaN zep6Z}mR%+lQv8KavoJ|R%#cE8R3D_np+98TF4@&I<-1Mv*M$!(u>o?q$Y`$f{lKov zC^t9v$iczSb-!`{3ndf)o?c&VvcYUKUf(mJ@(##jzG%C{g`StaQKYK7<>oi@sRJuX$(B_J3 zZf>x;m+dLArono8S&a5}B%j8sAoaCTzRFWj%fc5?lyL`i}!&$l97}aMU zxwxo$(O@W@wZ5wOTY&=*@~(ZI!#S+$f$ zMt)7}>+Ab0zn3G?AE34;$R z;09-Bi=?&UNCp3;0@jv$>K(4$Z>t$omVn=rI(=gI*P0$3Ho92b)v~U!W0S6aol(kS4i0h-MXQt5HFfEk^%`}cH1uhV?^n{z8GE2GPc3jq{jYc9o0v*hHj zL?nmWb_`gnjCx^Vy;@?LNSFhx+Bu$yOhihay9FSzT8Vl@s!I!bHZo(`X(O`)ef9tz zKCizgk!U_UQ2BYexq>Jc7-BBG6Mvos?(XjX+uX_@E_|^j_%-Wl@fMCHEVRUcGg_%M zGcV85#bp7do0f(~+tAQ$zvvHFTFM`W5}Wt4-GT5P9$sFZQyc*i;3BnduCBS=g2|rS zB$+W0_^^5``a8f)qWS!VIKulXf8Od6$A9`Wvt(@H0RE+=TSi^4yw}8{Pu*5loO~7w z;|S6;sgd<&$PPNGvIV=6wCgVSItH-y3Q-lmwu(hCDRnp}b1D`!H>akh;Q|E9tZOdd zzh=t>JZ7+(0(|r7gsAkFc~tYK9GMEkvEG`Rn%X)#j?qQFdo(uTAP^$Me}5OC7>s+f z3FuYQEWd90v-s7YTm;^`vJpeQbDu{^T5oHtdd3$1GR}~a4slp$6b96sQzZi!C~f-0 zP1+^P?4m#k^sx>dwg}Ay?6-P&iBDVgC4J=_j9ED!bB;(2KP=7j`7`F~pT8e|L$V_{?eih*AJCQmftA2pQiA7s zb!fp@*-;}o&*3s<{L!*}Vo!44uR1BF8y*2A>6?&)91vm$O42Z-@8J5IIpb3T?St~P z_MbEV5?IVQfcu14eoLCW`a+#N*5>;8)?=d@&vDI>ms%;Sr0~3>w7Y*bKDjU_sji@p zL-BuR{r3D3x2h1rjmjkOyMo;Fa+rzFbEZ|^n8Af>;_vcl+OU7$2}vK^GBZNzg?%*g=s z<7~p{{SW=l<9~F%u(h3CrPWRf+P$HM0 zpt7(DkN}YaB1B=hvfnuW!2Z(JRiF1>_j~<$-Sw)w`fAlYma&sTIfS#rVVt*@+?}R4 zu~UZMOLSWTHD*h8AlQcZN!z~`g;rL#TE!g-cxn|F=+SA_5CV2QJW{7xANhhc^t-va zIa#f1!6&)<@fTe61ePealq%|xbT`#3OG=ulHl&eUVz2)JGK{$# zB4qG+j)awFr%d&kZkkSv8{zODwpHl-`N*GIpf=kLdEx*K+*+pxrgOnk3msJH2)DrR zqF(ba%U|*P!m?O5mu#(uctiSCr`4VQrd4VRUW9eU8Al%+wO?worsjoDoKih+p3I7y zj)q>E_TurJLey>-B8bgb_Fz>C=8R-{=F+xYirk*Iz4y`>UfR>=P`{C!KpU|$7nx!7 zXs&hCex@y?Q$>#1B^BJ`nGiC5K3BI4G^=;`LDPn1LC;nM2o zijAvs)Cw4xiN9+V46LG!fdd%CXX^o--lIQj;K~{y!0Ito&~82i4d_hJ#g|%e6sS_B zGYA1R3V^?>s;+W+dGAl0#36{N^#Mk`K16WtBOng}pT0DulrbSYr97V9ajX)42)d^@ z?GTYmL~3UD0T-I|knKjV2rlEkFo5!>h}JC_xfWhHMZfHz0Sw&EiE^l6%pbFs4dB68 zkX&m)7u-c<5p;a#KQV>3u-^D^#h|rpxHwmd5+p>VetF0W^Rgx;7Bc?kVG>55{wz51 zA}NgnCCSg_K8B<$LOoZ{#?*VC#V(&`eB;wob+yCfDX)kr6j;^*% zP-1_p{jvC^_7AnDavl`n%=i#{N<2{R@z4A$(I&0~g)n0IVL zZ(TiYCvKk?*YSotBO|Prq9CM`Li*k(p$+S6?ZA}Z{pDH|mN#>T`V@!u_pH-=bF`+P zSPVHsI%0K04hT}X*2A-|#hD#inxm50o)l+k#LbRyXVi1EZOf%a(b`@^FeIfrQ1-RM zeXOnsKlWw4rfg6%?3(%DD0{?bAlQG$P*$S7ws-bUQ_wRvj{jJSe z#q&FN_#AL22~7k;;42f-OPj73c~#0jXC35FU(aVNAv}QDhwXYn_f=z>uRO7!ciW1} zyofaGB+YjqT^l{JprPjJhp$1Nsl|93E;6DSuBh~7oyoD$i6AA_8-uFpT#Y_Nz;+)> ocp(0_+I-Zd|Esb4N#T^PNXmIKQ-cD3n1Yah`0-q`%Z2R!0qAA?IsgCw diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html deleted file mode 100644 index e50a3524..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - -
- <% if(propertyValue_circuitBreakerForceClosed) { %> - [ Forced Closed ] - <% } %> - <% if(propertyValue_circuitBreakerForceOpen) { %> - Circuit Forced Open - <% } else { %> - <% if(isCircuitBreakerOpen == reportingHosts) { %> - Circuit Open - <% } else if(isCircuitBreakerOpen == 0) { %> - Circuit Closed - <% } else { - /* We have some circuits that are open */ - %> - Circuit <%= isCircuitBreakerOpen.replace("true", "Open").replace("false", "Closed") %>) - <% } %> - <% } %> -
- -
- -
- <% if(typeof reportingHosts != 'undefined') { %> -
Hosts
-
<%= reportingHosts %>
- <% } else { %> -
Host
-
Single
- <% } %> -
90th
-
<%= getInstanceAverage(latencyExecute['90'], reportingHosts, false) %>ms
-
-
-
Median
-
<%= getInstanceAverage(latencyExecute['50'], reportingHosts, false) %>ms
-
99th
-
<%= getInstanceAverage(latencyExecute['99'], reportingHosts, false) %>ms
-
-
-
Mean
-
<%= latencyExecute_mean %>ms
-
99.5th
-
<%= getInstanceAverage(latencyExecute['99.5'], reportingHosts, false) %>ms
-
- - diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html deleted file mode 100644 index 4d19dbe0..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html +++ /dev/null @@ -1,40 +0,0 @@ -
- <% - var displayName = name; - var toolTip = ""; - if(displayName.length > 32) { - displayName = displayName.substring(0,4) + "..." + displayName.substring(displayName.length-20, displayName.length); - toolTip = "title=\"" + name + "\""; - } - %> - -
-
- <% if(includeDetailIcon) { %> -

style="padding-right:16px"> - <%= displayName %> - -

- <% } else { %> -

><%= displayName %>

- <% } %> -
-
-
-
-
- - -
diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html deleted file mode 100644 index 5b8c0fae..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html +++ /dev/null @@ -1,6 +0,0 @@ -
-
Median
-
<%= sla_medianLastMinute %>ms
-
99th
-
<%= sla_percentile99LastMinute %>ms
-
diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css deleted file mode 100644 index e82ea5cc..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css +++ /dev/null @@ -1,141 +0,0 @@ -.dependencyThreadPools .spacer { - width: 100%; - margin: 0 auto; - padding-top:4px; - clear:both; -} - - -.dependencyThreadPools .last { - margin-right: 0px; -} - -.dependencyThreadPools span.loading { - display: block; - padding-top: 6%; - padding-bottom: 6%; - color: gray; - text-align: center; -} - -.dependencyThreadPools span.loading.failed { - color: red; -} - - -.dependencyThreadPools div.monitor { - float: left; - margin-right:5px; /* these are tweaked to look good on desktop and iPad portrait, and fit things densely */ - margin-top:5px; -} - -.dependencyThreadPools div.monitor p.name { - font-weight:bold; - font-size: 10pt; - text-align: right; - padding-bottom: 5px; -} - -.dependencyThreadPools div.monitor_data { - margin: 0 auto; -} - -.dependencyThreadPools span.smaller { - font-size: 8pt; - color: grey; -} - - -.dependencyThreadPools div.tableRow { - width:100%; - white-space: nowrap; - font-size: 8pt; - margin: 0 auto; - clear:both; -} - -.dependencyThreadPools div.tableRow .cell { - float:left; -} - -.dependencyThreadPools div.tableRow .header { - text-align:right; - padding-right:5px; -} - -.dependencyThreadPools div.tableRow .header.left { - width:85px; -} - -.dependencyThreadPools div.tableRow .header.right { - width:75px; -} - -.dependencyThreadPools div.tableRow .data { - font-weight: bold; - text-align:right; -} - -.dependencyThreadPools div.tableRow .data.left { - width:30px; -} - -.dependencyThreadPools div.tableRow .data.right { - width:45px; -} - -.dependencyThreadPools div.monitor { - width: 245px; /* we want a fixed width instead of percentage as I want the boxes to be a set size and then fill in as many as can fit in each row ... this allows 3 columns on an iPad */ - height: 110px; -} - - - - - -/* override the HREF when we have specified it as a tooltip to not act like a link */ -.dependencyThreadPools div.monitor_data a.tooltip { - text-decoration: none; - cursor: default; -} - -.dependencyThreadPools div.monitor_data a.rate { - font-weight:bold; - color: black; - font-size: 11pt; -} - -.dependencyThreadPools div.rate { - padding-top: 1px; - clear:both; - text-align:right; -} - -.dependencyThreadPools span.rate_value { - font-weight:bold; -} - - - - - - - -.dependencyThreadPools div.monitor div.chart { -} - -.dependencyThreadPools div.monitor div.chart svg { -} - -.dependencyThreadPools div.monitor div.chart svg text { - fill: white; -} - -.dependencyThreadPools #hidden { - width:1px; - height:1px; - background: lightgrey; - display: none; -} - - diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js deleted file mode 100644 index a5003bc4..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js +++ /dev/null @@ -1,346 +0,0 @@ - -(function(window) { - - // cache the templates we use on this page as global variables (asynchronously) - jQuery.get(getRelativePath("../components/hystrixThreadPool/templates/hystrixThreadPool.html"), function(data) { - htmlTemplate = data; - }); - jQuery.get(getRelativePath("../components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html"), function(data) { - htmlTemplateContainer = data; - }); - - function getRelativePath(path) { - var p = location.pathname.slice(0, location.pathname.lastIndexOf("/")+1); - return p + path; - } - - /** - * Object containing functions for displaying and updating the UI with streaming data. - * - * Publish this externally as "HystrixThreadPoolMonitor" - */ - window.HystrixThreadPoolMonitor = function(containerId) { - - var self = this; // keep scope under control - - this.containerId = containerId; - - /** - * Initialization on construction - */ - // intialize various variables we use for visualization - var maxXaxisForCircle="40%"; - var maxYaxisForCircle="40%"; - var maxRadiusForCircle="125"; - var maxDomain = 2000; - - self.circleRadius = d3.scale.pow().exponent(0.5).domain([0, maxDomain]).range(["5", maxRadiusForCircle]); // requests per second per host - self.circleYaxis = d3.scale.linear().domain([0, maxDomain]).range(["30%", maxXaxisForCircle]); - self.circleXaxis = d3.scale.linear().domain([0, maxDomain]).range(["30%", maxYaxisForCircle]); - self.colorRange = d3.scale.linear().domain([10, 25, 40, 50]).range(["green", "#FFCC00", "#FF9900", "red"]); - self.errorPercentageColorRange = d3.scale.linear().domain([0, 10, 35, 50]).range(["grey", "black", "#FF9900", "red"]); - - /** - * We want to keep sorting in the background since data values are always changing, so this will re-sort every X milliseconds - * to maintain whatever sort the user (or default) has chosen. - * - * In other words, sorting only for adds/deletes is not sufficient as all but alphabetical sort are dynamically changing. - */ - setInterval(function() { - // sort since we have added a new one - self.sortSameAsLast(); - }, 1000) - - /** - * END of Initialization on construction - */ - - /** - * Event listener to handle new messages from EventSource as streamed from the server. - */ - /* public */ self.eventSourceMessageListener = function(e) { - var data = JSON.parse(e.data); - if(data) { - // check for reportingHosts (if not there, set it to 1 for singleHost vs cluster) - if(!data.reportingHosts) { - data.reportingHosts = 1; - } - - if(data && data.type == 'HystrixThreadPool') { - if (data.deleteData == 'true') { - deleteThreadPool(data.escapedName); - } else { - displayThreadPool(data); - } - } - } - } - - /** - * Pre process the data before displying in the UI. - * e.g Get Averages from sums, do rate calculation etc. - */ - function preProcessData(data) { - validateData(data); - // escape string used in jQuery & d3 selectors - data.escapedName = data.name.replace(/([ !"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g,'\\$1'); - // do math - converAllAvg(data); - calcRatePerSecond(data); - } - - 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) { - if (decimal) { - data[key] = roundNumber(data[key]/data["reportingHosts"]); - } else { - data[key] = Math.floor(data[key]/data["reportingHosts"]); - } - } - - function calcRatePerSecond(data) { - var numberSeconds = data["propertyValue_metricsRollingStatisticalWindowInMilliseconds"] / 1000; - - var totalThreadsExecuted = data["rollingCountThreadsExecuted"]; - if (totalThreadsExecuted < 0) { - totalThreadsExecuted = 0; - } - data["ratePerSecond"] = roundNumber(totalThreadsExecuted / numberSeconds); - data["ratePerSecondPerHost"] = roundNumber(totalThreadsExecuted / numberSeconds / data["reportingHosts"]); - } - - function validateData(data) { - - assertNotNull(data,"type"); - assertNotNull(data,"name"); - // assertNotNull(data,"currentTime"); - assertNotNull(data,"currentActiveCount"); - assertNotNull(data,"currentCompletedTaskCount"); - assertNotNull(data,"currentCorePoolSize"); - assertNotNull(data,"currentLargestPoolSize"); - assertNotNull(data,"currentMaximumPoolSize"); - assertNotNull(data,"currentPoolSize"); - assertNotNull(data,"currentQueueSize"); - assertNotNull(data,"currentTaskCount"); - assertNotNull(data,"rollingCountThreadsExecuted"); - assertNotNull(data,"rollingMaxActiveThreads"); - assertNotNull(data,"reportingHosts"); - - assertNotNull(data,"propertyValue_queueSizeRejectionThreshold"); - assertNotNull(data,"propertyValue_metricsRollingStatisticalWindowInMilliseconds"); - } - - function assertNotNull(data, key) { - if(data[key] == undefined) { - if (key == "dependencyOwner") { - data["dependencyOwner"] = data.name; - } else { - throw new Error("Key Missing: " + key + " for " + data.name) - } - } - } - - /** - * Method to display the THREAD_POOL data - * - * @param data - */ - /* private */ function displayThreadPool(data) { - - try { - preProcessData(data); - } catch (err) { - log("Failed preProcessData: " + err.message); - return; - } - - // add the 'addCommas' function to the 'data' object so the HTML templates can use it - data.addCommas = addCommas; - // add the 'roundNumber' function to the 'data' object so the HTML templates can use it - data.roundNumber = roundNumber; - - var addNew = false; - // check if we need to create the container - if(!$('#THREAD_POOL_' + data.escapedName).length) { - // it doesn't exist so add it - var html = tmpl(htmlTemplateContainer, data); - // remove the loading thing first - $('#' + containerId + ' span.loading').remove(); - // get the current last column and remove the 'last' class from it - $('#' + containerId + ' div.last').removeClass('last'); - // now create the new data and add it - $('#' + containerId + '').append(html); - // add the 'last' class to the column we just added - $('#' + containerId + ' div.monitor').last().addClass('last'); - - // add the default sparkline graph - d3.selectAll('#graph_THREAD_POOL_' + data.escapedName + ' svg').append("svg:path"); - - // remember this is new so we can trigger a sort after setting data - addNew = true; - } - - // set the rate on the div element so it's available for sorting - $('#THREAD_POOL_' + data.escapedName).attr('rate_value', data.ratePerSecondPerHost); - - // now update/insert the data - $('#THREAD_POOL_' + data.escapedName + ' div.monitor_data').html(tmpl(htmlTemplate, data)); - - // set variables for circle visualization - var rate = data.ratePerSecondPerHost; - // we will treat each item in queue as 1% of an error visualization - // ie. 5 threads in queue per instance == 5% error percentage - var errorPercentage = data.currentQueueSize / data.reportingHosts; - - updateCircle('#THREAD_POOL_' + data.escapedName + ' circle', rate, errorPercentage); - - if(addNew) { - // sort since we added a new circuit - self.sortSameAsLast(); - } - } - - /* round a number to X digits: num => the number to round, dec => the number of decimals */ - /* private */ function roundNumber(num) { - var dec=1; // we are hardcoding to support only 1 decimal so that our padding logic at the end is simple - var result = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec); - var resultAsString = result.toString(); - if(resultAsString.indexOf('.') == -1) { - resultAsString = resultAsString + '.'; - for(var i=0; i parseInt(maxXaxisForCircle)) { - newXaxisForCircle = maxXaxisForCircle; - } - var newYaxisForCircle = self.circleYaxis(rate); - if(parseInt(newYaxisForCircle) > parseInt(maxYaxisForCircle)) { - newYaxisForCircle = maxYaxisForCircle; - } - var newRadiusForCircle = self.circleRadius(rate); - if(parseInt(newRadiusForCircle) > parseInt(maxRadiusForCircle)) { - newRadiusForCircle = maxRadiusForCircle; - } - - d3.selectAll(cssTarget) - .transition() - .duration(400) - .attr("cy", newYaxisForCircle) - .attr("cx", newXaxisForCircle) - .attr("r", newRadiusForCircle) - .style("fill", self.colorRange(errorPercentage)); - } - - /* private */ function deleteThreadPool(poolName) { - $('#THREAD_POOL_' + poolName).remove(); - } - - } - - // public methods for sorting - HystrixThreadPoolMonitor.prototype.sortByVolume = function() { - var direction = "desc"; - if(this.sortedBy == 'rate_desc') { - direction = 'asc'; - } - this.sortByVolumeInDirection(direction); - } - - HystrixThreadPoolMonitor.prototype.sortByVolumeInDirection = function(direction) { - this.sortedBy = 'rate_' + direction; - $('#' + this.containerId + ' div.monitor').tsort({order: direction, attr: 'rate_value'}); - } - - HystrixThreadPoolMonitor.prototype.sortAlphabetically = function() { - var direction = "asc"; - if(this.sortedBy == 'alph_asc') { - direction = 'desc'; - } - this.sortAlphabeticalInDirection(direction); - } - - HystrixThreadPoolMonitor.prototype.sortAlphabeticalInDirection = function(direction) { - this.sortedBy = 'alph_' + direction; - $('#' + this.containerId + ' div.monitor').tsort("p.name", {order: direction}); - } - - HystrixThreadPoolMonitor.prototype.sortByMetricInDirection = function(direction, metric) { - $('#' + this.containerId + ' div.monitor').tsort(metric, {order: direction}); - } - - // this method is for when new divs are added to cause the elements to be sorted to whatever the user last chose - HystrixThreadPoolMonitor.prototype.sortSameAsLast = function() { - if(this.sortedBy == 'alph_asc') { - this.sortAlphabeticalInDirection('asc'); - } else if(this.sortedBy == 'alph_desc') { - this.sortAlphabeticalInDirection('desc'); - } else if(this.sortedBy == 'rate_asc') { - this.sortByVolumeInDirection('asc'); - } else if(this.sortedBy == 'rate_desc') { - this.sortByVolumeInDirection('desc'); - } else if(this.sortedBy == 'error_asc') { - this.sortByErrorInDirection('asc'); - } else if(this.sortedBy == 'error_desc') { - this.sortByErrorInDirection('desc'); - } else if(this.sortedBy == 'lat90_asc') { - this.sortByMetricInDirection('asc', 'p90'); - } else if(this.sortedBy == 'lat90_desc') { - this.sortByMetricInDirection('desc', 'p90'); - } else if(this.sortedBy == 'lat99_asc') { - this.sortByMetricInDirection('asc', 'p99'); - } else if(this.sortedBy == 'lat99_desc') { - this.sortByMetricInDirection('desc', 'p99'); - } else if(this.sortedBy == 'lat995_asc') { - this.sortByMetricInDirection('asc', 'p995'); - } else if(this.sortedBy == 'lat995_desc') { - this.sortByMetricInDirection('desc', 'p995'); - } else if(this.sortedBy == 'latMean_asc') { - this.sortByMetricInDirection('asc', 'pMean'); - } else if(this.sortedBy == 'latMean_desc') { - this.sortByMetricInDirection('desc', 'pMean'); - } else if(this.sortedBy == 'latMedian_asc') { - this.sortByMetricInDirection('asc', 'pMedian'); - } else if(this.sortedBy == 'latMedian_desc') { - this.sortByMetricInDirection('desc', 'pMedian'); - } - } - - // default sort type and direction - this.sortedBy = 'alph_asc'; - - - // a temporary home for the logger until we become more sophisticated - function log(message) { - console.log(message); - }; - - function addCommas(nStr){ - nStr += ''; - if(nStr.length <=3) { - return nStr; //shortcut if we don't need commas - } - x = nStr.split('.'); - x1 = x[0]; - x2 = x.length > 1 ? '.' + x[1] : ''; - var rgx = /(\d+)(\d{3})/; - while (rgx.test(x1)) { - x1 = x1.replace(rgx, '$1' + ',' + '$2'); - } - return x1 + x2; - } -})(window) - - diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html deleted file mode 100644 index 1e653ccb..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html +++ /dev/null @@ -1,33 +0,0 @@ - -
- - - - -
- -
-
Active
-
<%= currentActiveCount%>
- -
Max Active
-
<%= addCommas(rollingMaxActiveThreads)%>
-
- -
-
Queued
-
<%= currentQueueSize %>
-
Executions
-
<%= addCommas(rollingCountThreadsExecuted)%>
-
-
-
Pool Size
-
<%= currentPoolSize %>
-
Queue Size
-
<%= propertyValue_queueSizeRejectionThreshold %>
-
- \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html b/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html deleted file mode 100644 index 6af0ef2c..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html +++ /dev/null @@ -1,34 +0,0 @@ -
- - <% - var displayName = name; - var toolTip = ""; - if(displayName.length > 32) { - displayName = displayName.substring(0,4) + "..." + displayName.substring(displayName.length-20, displayName.length); - toolTip = "title=\"" + name + "\""; - } - %> - -
-

><%= displayName %>

-
-
-
- - - - -
diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/global.css b/spring-cloud-netflix-hystrix/src/main/resources/static/css/global.css deleted file mode 100644 index 46898b11..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/global.css +++ /dev/null @@ -1,71 +0,0 @@ -@IMPORT url("resets.css"); - -body { - font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; -} - -img, object, embed { - max-width: 100%; -} - -img { - height: auto; -} - - -#header { - background: #FFFFFF url(http://raw.github.com/wiki/Netflix/Hystrix/images/hystrix-logo-tagline-tiny.png) no-repeat scroll 99% 0%; - height: 65px; - margin-bottom: 5px; -} - -#header h2 { - float:left; - color: black; - position:relative; - padding-left: 20px; - top: 26px; - font-size: 20px; - font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; -} - -#header .header_nav { - position:absolute; - top:48px; - right:15px; -} - -#header .header_links { - float:left; - color: lightgray; - font-size: 18px; - top: 3px; - padding-left: 10px; - font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; -} - -#header .header_links a { - color: white; -} - -#header .header_clusters { - float:left; - position:relative; - padding-left: 10px; - top: -1px; - font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; -} - - -@media screen and (min-width: 1500px) { - - #header .header_nav { - top:13px; - right:130px; - } - - #header { - background: #FFFFFF url(http://raw.github.com/wiki/Netflix/Hystrix/images/hystrix-logo-tagline-tiny.png) no-repeat scroll 99% 50%; - height: 65px; - } -} diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/resets.css b/spring-cloud-netflix-hystrix/src/main/resources/static/css/resets.css deleted file mode 100644 index 4d137c7e..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/resets.css +++ /dev/null @@ -1,102 +0,0 @@ -/* -html5doctor.com Reset Stylesheet -v1.6.1 -Last Updated: 2010-09-17 -Author: Richard Clark - http://richclarkdesign.com -Twitter: @rich_clark -*/ - -html, body, div, span, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -abbr, address, cite, code, -del, dfn, em, img, ins, kbd, q, samp, -small, strong, sub, sup, var, -b, i, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, figcaption, figure, -footer, header, hgroup, menu, nav, section, summary, -time, mark, audio, video { - margin:0; - padding:0; - border:0; - outline:0; - font-size:100%; - vertical-align:baseline; - background:transparent; -} - -body { - line-height:1; -} - -article,aside,details,figcaption,figure, -footer,header,hgroup,menu,nav,section { - display:block; -} - -nav ul { - list-style:none; -} - -blockquote, q { - quotes:none; -} - -blockquote:before, blockquote:after, -q:before, q:after { - content:''; - content:none; -} - -a { - margin:0; - padding:0; - font-size:100%; - vertical-align:baseline; - background:transparent; -} - -/* change colours to suit your needs */ -ins { - background-color:#ff9; - color:#000; - text-decoration:none; -} - -/* change colours to suit your needs */ -mark { - background-color:#ff9; - color:#000; - font-style:italic; - font-weight:bold; -} - -del { - text-decoration: line-through; -} - -abbr[title], dfn[title] { - border-bottom:1px dotted; - cursor:help; -} - -table { - border-collapse:collapse; - border-spacing:0; -} - -/* change border colour to suit your needs */ -hr { - display:block; - height:1px; - border:0; - border-top:1px solid #cccccc; - margin:1em 0; - padding:0; -} - -input, select { - vertical-align:middle; -} \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css b/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css deleted file mode 100644 index 052ee488..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css +++ /dev/null @@ -1,21 +0,0 @@ -/* SimpleGrid - a fork of CSSGrid by Crowd Favorite (https://github.com/crowdfavorite/css-grid) - * http://simplegrid.info - * by Conor Muirhead (http://conor.cc) of Early LLC (http://earlymade.com) - * License: http://creativecommons.org/licenses/MIT/ */ - -/* Containers */ -body { font-size: 1.125em; } -.grid{ width:1206px; } - -/* 6-Col Grid Sizes */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5{ width:176px; } /* Sixths */ -.slot-0-1,.slot-1-2,.slot-2-3,.slot-3-4,.slot-4-5{ width:382px; } /* Thirds */ -.slot-0-1-2-3,.slot-1-2-3-4,.slot-2-3-4-5{ width:794px; } /* Two-Thirds */ -.slot-0-1-2-3-4,.slot-1-2-3-4-5{ width:1000px; } /* Five-Sixths */ - -/* 4-Col Grid Sizes */ -.slot-6,.slot-7,.slot-8,.slot-9{ width:279px; } /* Quarters */ -.slot-6-7-8,.slot-7-8-9{ width:897px; } /* Three-Quarters */ - -/* 6-Col/4-Col Shared Grid Sizes */ -.slot-0-1-2,.slot-1-2-3,.slot-2-3-4,.slot-3-4-5, .slot-6-7,.slot-7-8,.slot-8-9{ width:588px; } /* Halves */ \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css b/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css deleted file mode 100644 index 0ef2432c..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css +++ /dev/null @@ -1,33 +0,0 @@ -/* SimpleGrid - a fork of CSSGrid by Crowd Favorite (https://github.com/crowdfavorite/css-grid) - * http://simplegrid.info - * by Conor Muirhead (http://conor.cc) of Early LLC (http://earlymade.com) - * License: http://creativecommons.org/licenses/MIT/ */ - -/* Containers */ -body { font-size: 0.875em; padding: 0; } -.grid{ margin:0 auto; padding: 0 10px; width:700px; } -.row{ clear:left; } - -/* Slots Setup */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5,.slot-0-1,.slot-0-1-2,.slot-0-1-2-3,.slot-0-1-2-3-4,.slot-0-1-2-3-4-5,.slot-1-2,.slot-1-2-3,.slot-1-2-3-4,.slot-1-2-3-4-5,.slot-2-3,.slot-2-3-4,.slot-2-3-4-5,.slot-3-4,.slot-3-4-5,.slot-4-5,.slot-6,.slot-7,.slot-8,.slot-9,.slot-6-7,.slot-6-7-8,.slot-6-7-8-9,.slot-7-8,.slot-7-8-9,.slot-8-9{ display:inline; float:left; margin-left:20px; } - -/* 6-Col Grid Sizes */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5{ width:100px; } /* Sixths */ -.slot-0-1,.slot-1-2,.slot-2-3,.slot-3-4,.slot-4-5{ width:220px; } /* Thirds */ -.slot-0-1-2-3,.slot-1-2-3-4,.slot-2-3-4-5{ width:460px; } /* Two-Thirds */ -.slot-0-1-2-3-4,.slot-1-2-3-4-5{ width:580px; } /* Five-Sixths */ - -/* 4-Col Grid Sizes */ -.slot-6,.slot-7,.slot-8,.slot-9{ width:160px; } /* Quarters */ -.slot-6-7-8,.slot-7-8-9{ width:520px; } /* Three-Quarters */ - -/* 6-Col/4-Col Shared Grid Sizes */ -.slot-0-1-2,.slot-1-2-3,.slot-2-3-4,.slot-3-4-5, .slot-6-7,.slot-7-8,.slot-8-9{ width:340px; } /* Halves */ -.slot-0-1-2-3-4-5, .slot-6-7-8-9{ width: 100%; } /* Full-Width */ - -/* Zeroing Out Leftmost Slot Margins */ -.slot-0,.slot-0-1,.slot-0-1-2,.slot-0-1-2-3,.slot-0-1-2-3-4,.slot-0-1-2-3-4-5,.slot-6,.slot-6-7,.slot-6-7-8,.slot-6-7-8-9,.slot-1 .slot-1,.slot-1-2 .slot-1,.slot-1-2 .slot-1-2,.slot-1-2-3 .slot-1,.slot-1-2-3 .slot-1-2,.slot-1-2-3 .slot-1-2-3,.slot-1-2-3-4 .slot-1,.slot-1-2-3-4 .slot-1-2,.slot-1-2-3-4 .slot-1-2-3,.slot-1-2-3-4 .slot-1-2-3-4,.slot-1-2-3-4-5 .slot-1,.slot-1-2-3-4-5 .slot-1-2,.slot-1-2-3-4-5 .slot-1-2-3,.slot-1-2-3-4-5 .slot-1-2-3-4,.slot-1-2-3-4-5 .slot-1-2-3-4-5,.slot-2 .slot-2,.slot-2-3 .slot-2,.slot-2-3 .slot-2-3,.slot-2-3-4 .slot-2,.slot-2-3-4 .slot-2-3,.slot-2-3-4 .slot-2-3-4,.slot-2-3-4-5 .slot-2,.slot-2-3-4-5 .slot-2-3,.slot-2-3-4-5 .slot-2-3-4,.slot-2-3-4-5 .slot-2-3-4-5,.slot-3 .slot-3,.slot-3-4 .slot-3,.slot-3-4 .slot-3-4,.slot-3-4-5 .slot-3,.slot-3-4-5 .slot-3-4,.slot-3-4-5 .slot-3-4-5,.slot-4 .slot-4,.slot-4-5 .slot-4,.slot-4-5 .slot-4-5,.slot-5 .slot-5,.slot-7 .slot-7,.slot-7-8 .slot-7,.slot-7-8 .slot-7-8,.slot-7-8-9 .slot-7,.slot-7-8-9 .slot-7-8,.slot-7-8-9 .slot-7-8-9,.slot-8 .slot-8,.slot-8-9 .slot-8,.slot-8-9 .slot-8-9{ margin-left:0 !important; } /* Important is to avoid repeating this in larger screen css files */ - -/* Row Clearfix */ -.row:after{ visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0; } -.row{ zoom:1; } \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css b/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css deleted file mode 100644 index 83a59788..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css +++ /dev/null @@ -1,24 +0,0 @@ -/* SimpleGrid - a fork of CSSGrid by Crowd Favorite (https://github.com/crowdfavorite/css-grid) - * http://simplegrid.info - * by Conor Muirhead (http://conor.cc) of Early LLC (http://earlymade.com) - * License: http://creativecommons.org/licenses/MIT/ */ - -/* Containers */ -body { font-size: 100%; } -.grid{ width:966px; } - -/* Slots Setup */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5,.slot-0-1,.slot-0-1-2,.slot-0-1-2-3,.slot-0-1-2-3-4,.slot-0-1-2-3-4-5,.slot-1-2,.slot-1-2-3,.slot-1-2-3-4,.slot-1-2-3-4-5,.slot-2-3,.slot-2-3-4,.slot-2-3-4-5,.slot-3-4,.slot-3-4-5,.slot-4-5,.slot-6,.slot-7,.slot-8,.slot-9,.slot-6-7,.slot-6-7-8,.slot-6-7-8-9,.slot-7-8,.slot-7-8-9,.slot-8-9{ display:inline; float:left; margin-left:30px; } - -/* 6-Col Grid Sizes */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5{ width:136px; } /* Sixths */ -.slot-0-1,.slot-1-2,.slot-2-3,.slot-3-4,.slot-4-5{ width:302px; } /* Thirds */ -.slot-0-1-2-3,.slot-1-2-3-4,.slot-2-3-4-5{ width:634px; } /* Two-Thirds */ -.slot-0-1-2-3-4,.slot-1-2-3-4-5{ width:800px; } /* Five-Sixths */ - -/* 4-Col Grid Sizes */ -.slot-6,.slot-7,.slot-8,.slot-9{ width:219px; } /* Quarters */ -.slot-6-7-8,.slot-7-8-9{ width:717px; } /* Three-Quarters */ - -/* 6-Col/4-Col Shared Grid Sizes */ -.slot-0-1-2,.slot-1-2-3,.slot-2-3-4,.slot-3-4-5, .slot-6-7,.slot-7-8,.slot-8-9{ width:468px; } /* Halves */ \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt b/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt deleted file mode 100644 index e942914a..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2011 Crowd Favorite, Ltd. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt b/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt deleted file mode 100644 index 15cfc8c3..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt +++ /dev/null @@ -1 +0,0 @@ -http://simplegrid.info/ \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css b/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css deleted file mode 100644 index 13cb4b2d..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css +++ /dev/null @@ -1,27 +0,0 @@ -/* Extension of SimpleGrid by benjchristensen to allow percentage based sizing on very large displays - * - * SimpleGrid - a fork of CSSGrid by Crowd Favorite (https://github.com/crowdfavorite/css-grid) - * http://simplegrid.info - * by Conor Muirhead (http://conor.cc) of Early LLC (http://earlymade.com) - * License: http://creativecommons.org/licenses/MIT/ */ - -/* Containers */ -body { font-size: 1.125em; } -.grid{ width:100%; } - -/* Slots Setup */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5,.slot-0-1,.slot-0-1-2,.slot-0-1-2-3,.slot-0-1-2-3-4,.slot-0-1-2-3-4-5,.slot-1-2,.slot-1-2-3,.slot-1-2-3-4,.slot-1-2-3-4-5,.slot-2-3,.slot-2-3-4,.slot-2-3-4-5,.slot-3-4,.slot-3-4-5,.slot-4-5,.slot-6,.slot-7,.slot-8,.slot-9,.slot-6-7,.slot-6-7-8,.slot-6-7-8-9,.slot-7-8,.slot-7-8-9,.slot-8-9{ display:inline; float:left; margin-left:0px; } - - -/* 6-Col Grid Sizes */ -.slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5{ width:16.6%; } /* Sixths */ -.slot-0-1,.slot-1-2,.slot-2-3,.slot-3-4,.slot-4-5{ width:33.3%; } /* Thirds */ -.slot-0-1-2-3,.slot-1-2-3-4,.slot-2-3-4-5{ width:66.6%; } /* Two-Thirds */ -.slot-0-1-2-3-4,.slot-1-2-3-4-5{ width:83.3%; } /* Five-Sixths */ - -/* 4-Col Grid Sizes */ -.slot-6,.slot-7,.slot-8,.slot-9{ width:25%; } /* Quarters */ -.slot-6-7-8,.slot-7-8-9{ width:75%; } /* Three-Quarters */ - -/* 6-Col/4-Col Shared Grid Sizes */ -.slot-0-1-2,.slot-1-2-3,.slot-2-3-4,.slot-3-4-5, .slot-6-7,.slot-7-8,.slot-8-9{ width:50%; } /* Halves */ \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/index.html b/spring-cloud-netflix-hystrix/src/main/resources/static/index.html deleted file mode 100644 index dd098aee..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - -Hystrix Dashboard - - - - - - - -
- -
- -
-
- -

Hystrix Dashboard

- -

- Cluster via Turbine (default cluster): http://turbine-hostname:port/turbine.stream -
- Cluster via Turbine (custom cluster): http://turbine-hostname:port/turbine.stream?cluster=[clusterName] -
- Single Hystrix App: http://hystrix-app:port/hystrix.stream -

- Delay: ms -      - Title:
-
- -

-
- -
-
- - \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/js/LICENSE b/spring-cloud-netflix-hystrix/src/main/resources/static/js/LICENSE deleted file mode 100644 index cde4728a..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/js/LICENSE +++ /dev/null @@ -1,26 +0,0 @@ -Copyright (c) 2012, Michael Bostock -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* The name Michael Bostock may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js b/spring-cloud-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js deleted file mode 100644 index 0b4ea58f..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js +++ /dev/null @@ -1,4 +0,0 @@ -(function(){function e(e,t){try{for(var n in t)Object.defineProperty(e.prototype,n,{value:t[n],enumerable:!1})}catch(r){e.prototype=t}}function t(e){var t=-1,n=e.length,r=[];while(++t=0?e.substring(t):(t=e.length,""),r=[];while(t>0)r.push(e.substring(t-=3,t+3));return r.reverse().join(",")+n}function b(e,t){var n=Math.pow(10,Math.abs(8-t)*3);return{scale:t>8?function(e){return e/n}:function(e){return e*n},symbol:e}}function w(e){return function(t){return t<=0?0:t>=1?1:e(t)}}function E(e){return function(t){return 1-e(1-t)}}function S(e){return function(t){return.5*(t<.5?e(2*t):2-e(2-2*t))}}function x(e){return e}function T(e){return function(t){return Math.pow(t,e)}}function N(e){return 1-Math.cos(e*Math.PI/2)}function C(e){return Math.pow(2,10*(e-1))}function k(e){return 1-Math.sqrt(1-e*e)}function L(e,t){var n;return arguments.length<2&&(t=.45),arguments.length<1?(e=1,n=t/4):n=t/(2*Math.PI)*Math.asin(1/e),function(r){return 1+e*Math.pow(2,10*-r)*Math.sin((r-n)*2*Math.PI/t)}}function A(e){return e||(e=1.70158),function(t){return t*t*((e+1)*t-e)}}function O(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375}function M(){d3.event.stopPropagation(),d3.event.preventDefault()}function _(){var e=d3.event,t;while(t=e.sourceEvent)e=t;return e}function D(e){var t=new d,n=0,r=arguments.length;while(++n360?e-=360:e<0&&(e+=360),e<60?s+(o-s)*e/60:e<180?o:e<240?s+(o-s)*(240-e)/60:s}function i(e){return Math.round(r(e)*255)}var s,o;return e%=360,e<0&&(e+=360),t=t<0?0:t>1?1:t,n=n<0?0:n>1?1:n,o=n<=.5?n*(1+t):n+t-n*t,s=2*n-o,U(i(e+120),i(e),i(e-120))}function Z(e,t,n){return new et(e,t,n)}function et(e,t,n){this.h=e,this.c=t,this.l=n}function tt(e,t,n){return nt(n,Math.cos(e*=Math.PI/180)*t,Math.sin(e)*t)}function nt(e,t,n){return new rt(e,t,n)}function rt(e,t,n){this.l=e,this.a=t,this.b=n}function it(e,t,n){var r=(e+16)/116,i=r+t/500,s=r-n/200;return i=ot(i)*ys,r=ot(r)*bs,s=ot(s)*ws,U(at(3.2404542*i-1.5371385*r-.4985314*s),at(-0.969266*i+1.8760108*r+.041556*s),at(.0556434*i-.2040259*r+1.0572252*s))}function st(e,t,n){return Z(Math.atan2(n,t)/Math.PI*180,Math.sqrt(t*t+n*n),e)}function ot(e){return e>.206893034?e*e*e:(e-4/29)/7.787037}function ut(e){return e>.008856?Math.pow(e,1/3):7.787037*e+4/29}function at(e){return Math.round(255*(e<=.00304?12.92*e:1.055*Math.pow(e,1/2.4)-.055))}function ft(e){return Qi(e,ks),e}function lt(e){return function(){return Ss(e,this)}}function ct(e){return function(){return xs(e,this)}}function ht(e,t){function n(){this.removeAttribute(e)}function r(){this.removeAttributeNS(e.space,e.local)}function i(){this.setAttribute(e,t)}function s(){this.setAttributeNS(e.space,e.local,t)}function o(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}function u(){var n=t.apply(this,arguments);n==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,n)}return e=d3.ns.qualify(e),t==null?e.local?r:n:typeof t=="function"?e.local?u:o:e.local?s:i}function pt(e){return new RegExp("(?:^|\\s+)"+d3.requote(e)+"(?:\\s+|$)","g")}function dt(e,t){function n(){var n=-1;while(++n0&&(e=e.substring(0,o)),t?i:r}function St(e,t){for(var n=0,r=e.length;nt?c():(v.active=t,i.forEach(function(t,n){(n=n.call(e,m,u))&&h.push(n)}),s.start.call(e,m,u),l(r)||d3.timer(l,0,n),1)}function l(n){if(v.active!==t)return c();var r=(n-p)/d,i=o(r),a=h.length;while(a>0)h[--a].call(e,i);if(r>=1)return c(),_s=t,s.end.call(e,m,u),_s=0,1}function c(){return--v.count||delete e.__transition__,1}var h=[],p=e.delay,d=e.duration,v=(e=e.node).__transition__||(e.__transition__={active:0,count:0}),m=e.__data__;++v.count,p<=r?f(r):d3.timer(f,p,n)})},0,n),e}function Nt(e){var t=_s,n=Fs,r=Bs,i=js;return _s=this.id,Fs=this.ease(),St(this,function(t,n,r){Bs=t.delay,js=t.duration,e.call(t=t.node,t.__data__,n,r)}),_s=t,Fs=n,Bs=r,js=i,this}function Ct(e,t,n){return n!=""&&Is}function kt(e,t){return d3.tween(e,F(t))}function Lt(){var e,t=Date.now(),n=Us;while(n)e=t-n.then,e>=n.delay&&(n.flush=n.callback(e)),n=n.next;var r=At()-t;r>24?(isFinite(r)&&(clearTimeout(Ws),Ws=setTimeout(Lt,r)),zs=0):(zs=1,Xs(Lt))}function At(){var e=null,t=Us,n=Infinity;while(t)t.flush?(delete Rs[t.callback.id],t=e?e.next=t.next:Us=t.next):(n=Math.min(n,t.then+t.delay),t=(e=t).next);return n}function Ot(e,t){var n=e.ownerSVGElement||e;if(n.createSVGPoint){var r=n.createSVGPoint();if(Vs<0&&(window.scrollX||window.scrollY)){n=d3.select(document.body).append("svg").style("position","absolute").style("top",0).style("left",0);var i=n[0][0].getScreenCTM();Vs=!i.f&&!i.e,n.remove()}return Vs?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(e.getScreenCTM().inverse()),[r.x,r.y]}var s=e.getBoundingClientRect();return[t.clientX-s.left-e.clientLeft,t.clientY-s.top-e.clientTop]}function Mt(){}function _t(e){var t=e[0],n=e[e.length-1];return t2?zt:Ut,a=r?q:I;return o=i(e,t,a,n),u=i(t,e,a,d3.interpolate),s}function s(e){return o(e)}var o,u;return s.invert=function(e){return u(e)},s.domain=function(t){return arguments.length?(e=t.map(Number),i()):e},s.range=function(e){return arguments.length?(t=e,i()):t},s.rangeRound=function(e){return s.range(e).interpolate(d3.interpolateRound)},s.clamp=function(e){return arguments.length?(r=e,i()):r},s.interpolate=function(e){return arguments.length?(n=e,i()):n},s.ticks=function(t){return qt(e,t)},s.tickFormat=function(t){return Rt(e,t)},s.nice=function(){return Pt(e,Ft),i()},s.copy=function(){return Bt(e,t,n,r)},i()}function jt(e,t){return d3.rebind(e,t,"range","rangeRound","interpolate","clamp")}function Ft(e){return e=Math.pow(10,Math.round(Math.log(e)/Math.LN10)-1),e&&{floor:function(t){return Math.floor(t/e)*e},ceil:function(t){return Math.ceil(t/e)*e}}}function It(e,t){var n=_t(e),r=n[1]-n[0],i=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),s=t/r*i;return s<=.15?i*=10:s<=.35?i*=5:s<=.75&&(i*=2),n[0]=Math.ceil(n[0]/i)*i,n[1]=Math.floor(n[1]/i)*i+i*.5,n[2]=i,n}function qt(e,t){return d3.range.apply(d3,It(e,t))}function Rt(e,t){return d3.format(",."+Math.max(0,-Math.floor(Math.log(It(e,t)[2])/Math.LN10+.01))+"f")}function Ut(e,t,n,r){var i=n(e[0],e[1]),s=r(t[0],t[1]);return function(e){return s(i(e))}}function zt(e,t,n,r){var i=[],s=[],o=0,u=Math.min(e.length,t.length)-1;e[u]0;f--)i.push(r(s)*f)}else{for(;sa;o--);i=i.slice(s,o)}return i},n.tickFormat=function(e,i){arguments.length<2&&(i=$s);if(arguments.length<1)return i;var s=Math.max(.1,e/n.ticks().length),o=t===Vt?(u=-1e-12,Math.floor):(u=1e-12,Math.ceil),u;return function(e){return e/r(o(t(e)+u))<=s?i(e):""}},n.copy=function(){return Wt(e.copy(),t)},jt(n,e)}function Xt(e){return Math.log(e<0?0:e)/Math.LN10}function Vt(e){return-Math.log(e>0?0:-e)/Math.LN10}function $t(e,t){function n(t){return e(r(t))}var r=Jt(t),i=Jt(1/t);return n.invert=function(t){return i(e.invert(t))},n.domain=function(t){return arguments.length?(e.domain(t.map(r)),n):e.domain().map(i)},n.ticks=function(e){return qt(n.domain(),e)},n.tickFormat=function(e){return Rt(n.domain(),e)},n.nice=function(){return n.domain(Pt(n.domain(),Ft))},n.exponent=function(e){if(!arguments.length)return t;var s=n.domain();return r=Jt(t=e),i=Jt(1/t),n.domain(s)},n.copy=function(){return $t(e.copy(),t)},jt(n,e)}function Jt(e){return function(t){return t<0?-Math.pow(-t,e):Math.pow(t,e)}}function Kt(e,t){function n(t){return o[((s.get(t)||s.set(t,e.push(t)))-1)%o.length]}function i(t,n){return d3.range(e.length).map(function(e){return t+n*e})}var s,o,u;return n.domain=function(i){if(!arguments.length)return e;e=[],s=new r;var o=-1,u=i.length,a;while(++o1){u=t[1],s=e[a],a++,r+="C"+(i[0]+o[0])+","+(i[1]+o[1])+","+(s[0]-u[0])+","+(s[1]-u[1])+","+s[0]+","+s[1];for(var f=2;f9&&(s=n*3/Math.sqrt(s),o[u]=s*r,o[u+1]=s*i));u=-1;while(++u<=a)s=(e[Math.min(a,u+1)][0]-e[Math.max(0,u-1)][0])/(6*(1+o[u]*o[u])),t.push([s||0,o[u]*s||0]);return t}function Cn(e){return e.length<3?an(e):e[0]+vn(e,Nn(e))}function kn(e){var t,n=-1,r=e.length,i,s;while(++n1){var r=_t(e.domain()),i,s=-1,o=t.length,u=(t[1]-t[0])/++n,a,f;while(++s0;)(f=+t[s]-a*u)>=r[0]&&i.push(f);for(--s,a=0;++ar&&(n=t,r=i);return n}function sr(e){return e.reduce(or,0)}function or(e,t){return e+t[1]}function ur(e,t){return ar(e,Math.ceil(Math.log(t.length)/Math.LN2+1))}function ar(e,t){var n=-1,r=+e[0],i=(e[1]-r)/t,s=[];while(++n<=t)s[n]=i*n+r;return s}function fr(e){return[d3.min(e),d3.max(e)]}function lr(e,t){return d3.rebind(e,t,"sort","children","value"),e.links=dr,e.nodes=function(t){return vo=!0,(e.nodes=e)(t)},e}function cr(e){return e.children}function hr(e){return e.value}function pr(e,t){return t.value-e.value}function dr(e){return d3.merge(e.map(function(e){return(e.children||[]).map(function(t){return{source:e,target:t}})}))}function vr(e,t){return e.value-t.value}function mr(e,t){var n=e._pack_next;e._pack_next=t,t._pack_prev=e,t._pack_next=n,n._pack_prev=t}function gr(e,t){e._pack_next=t,t._pack_prev=e}function yr(e,t){var n=t.x-e.x,r=t.y-e.y,i=e.r+t.r;return i*i-n*n-r*r>.001}function br(e){function t(e){r=Math.min(e.x-e.r,r),i=Math.max(e.x+e.r,i),s=Math.min(e.y-e.r,s),o=Math.max(e.y+e.r,o)}if(!(n=e.children)||!(p=n.length))return;var n,r=Infinity,i=-Infinity,s=Infinity,o=-Infinity,u,a,f,l,c,h,p;n.forEach(wr),u=n[0],u.x=-u.r,u.y=0,t(u);if(p>1){a=n[1],a.x=a.r,a.y=0,t(a);if(p>2){f=n[2],xr(u,a,f),t(f),mr(u,f),u._pack_prev=f,mr(f,a),a=u._pack_next;for(l=3;l0&&(e=r)}return e}function _r(e,t){return e.x-t.x}function Dr(e,t){return t.x-e.x}function Pr(e,t){return e.depth-t.depth}function Hr(e,t){function n(e,r){var i=e.children;if(i&&(a=i.length)){var s,o=null,u=-1,a;while(++u=0)s=r[i]._tree,s.prelim+=t,s.mod+=t,t+=s.shift+(n+=s.change)}function jr(e,t,n){e=e._tree,t=t._tree;var r=n/(t.number-e.number);e.change+=r,t.change-=r,t.shift+=n,t.prelim+=n,t.mod+=n}function Fr(e,t,n){return e._tree.ancestor.parent==t.parent?e._tree.ancestor:n}function Ir(e){return{x:e.x,y:e.y,dx:e.dx,dy:e.dy}}function qr(e,t){var n=e.x+t[3],r=e.y+t[0],i=e.dx-t[1]-t[3],s=e.dy-t[0]-t[2];return i<0&&(n+=i/2,i=0),s<0&&(r+=s/2,s=0),{x:n,y:r,dx:i,dy:s}}function Rr(e,t){function n(e,r){d3.text(e,t,function(e){r(e&&n.parse(e))})}function r(t){return t.map(i).join(e)}function i(e){return o.test(e)?'"'+e.replace(/\"/g,'""')+'"':e}var s=new RegExp("\r\n|["+e+"\r\n]","g"),o=new RegExp('["'+e+"\n]"),u=e.charCodeAt(0);return n.parse=function(e){var t;return n.parseRows(e,function(e,n){if(n){var r={},i=-1,s=t.length;while(++i=e.length)return i;if(l)return l=!1,r;var t=s.lastIndex;if(e.charCodeAt(t)===34){var n=t;while(n++0}function si(e,t,n){return(n[0]-t[0])*(e[1]-t[1])<(n[1]-t[1])*(e[0]-t[0])}function oi(e,t,n,r){var i=e[0],s=t[0],o=n[0],u=r[0],a=e[1],f=t[1],l=n[1],c=r[1],h=i-o,p=s-i,d=u-o,v=a-l,m=f-a,g=c-l,y=(d*v-g*h)/(g*p-d*m);return[i+y*p,a+y*m]}function ui(e,t){var n={list:e.map(function(e,t){return{index:t,x:e[0],y:e[1]}}).sort(function(e,t){return e.yt.y?1:e.xt.x?1:0}),bottomSite:null},r={list:[],leftEnd:null,rightEnd:null,init:function(){r.leftEnd=r.createHalfEdge(null,"l"),r.rightEnd=r.createHalfEdge(null,"l"),r.leftEnd.r=r.rightEnd,r.rightEnd.l=r.leftEnd,r.list.unshift(r.leftEnd,r.rightEnd)},createHalfEdge:function(e,t){return{edge:e,side:t,vertex:null,l:null,r:null}},insert:function(e,t){t.l=e,t.r=e.r,e.r.l=t,e.r=t},leftBound:function(e){var t=r.leftEnd;do t=t.r;while(t!=r.rightEnd&&i.rightOf(t,e));return t=t.l,t},del:function(e){e.l.r=e.r,e.r.l=e.l,e.edge=null},right:function(e){return e.r},left:function(e){return e.l},leftRegion:function(e){return e.edge==null?n.bottomSite:e.edge.region[e.side]},rightRegion:function(e){return e.edge==null?n.bottomSite:e.edge.region[wo[e.side]]}},i={bisect:function(e,t){var n={region:{l:e,r:t},ep:{l:null,r:null}},r=t.x-e.x,i=t.y-e.y,s=r>0?r:-r,o=i>0?i:-i;return n.c=e.x*r+e.y*i+(r*r+i*i)*.5,s>o?(n.a=1,n.b=i/r,n.c/=r):(n.b=1,n.a=r/i,n.c/=i),n},intersect:function(e,t){var n=e.edge,r=t.edge;if(!n||!r||n.region.r==r.region.r)return null;var i=n.a*r.b-n.b*r.a;if(Math.abs(i)<1e-10)return null;var s=(n.c*r.b-r.c*n.b)/i,o=(r.c*n.a-n.c*r.a)/i,u=n.region.r,a=r.region.r,f,l;u.y=l.region.r.x;return c&&f.side==="l"||!c&&f.side==="r"?null:{x:s,y:o}},rightOf:function(e,t){var n=e.edge,r=n.region.r,i=t.x>r.x;if(i&&e.side==="l")return 1;if(!i&&e.side==="r")return 0;if(n.a===1){var s=t.y-r.y,o=t.x-r.x,u=0,a=0;!i&&n.b<0||i&&n.b>=0?a=u=s>=n.b*o:(a=t.x+t.y*n.b>n.c,n.b<0&&(a=!a),a||(u=1));if(!u){var f=r.x-n.region.l.x;a=n.b*(o*o-s*s)h*h+p*p}return e.side==="l"?a:!a},endPoint:function(e,n,r){e.ep[n]=r;if(!e.ep[wo[n]])return;t(e)},distance:function(e,t){var n=e.x-t.x,r=e.y-t.y;return Math.sqrt(n*n+r*r)}},s={list:[],insert:function(e,t,n){e.vertex=t,e.ystar=t.y+n;for(var r=0,i=s.list,o=i.length;ru.ystar||e.ystar==u.ystar&&t.x>u.vertex.x)continue;break}i.splice(r,0,e)},del:function(e){for(var t=0,n=s.list,r=n.length;td.y&&(v=p,p=d,d=v,b="r"),y=i.bisect(p,d),h=r.createHalfEdge(y,b),r.insert(l,h),i.endPoint(y,wo[b],g),m=i.intersect(l,h),m&&(s.del(l),s.insert(l,m,i.distance(m,p))),m=i.intersect(h,c),m&&s.insert(h,m,i.distance(m,p))}}for(a=r.right(r.leftEnd);a!=r.rightEnd;a=r.right(a))t(a.edge)}function ai(){return{leaf:!0,nodes:[],point:null}}function fi(e,t,n,r,i,s){if(!e(t,n,r,i,s)){var o=(n+i)*.5,u=(r+s)*.5,a=t.nodes;a[0]&&fi(e,a[0],n,r,o,u),a[1]&&fi(e,a[1],o,r,i,u),a[2]&&fi(e,a[2],n,u,o,s),a[3]&&fi(e,a[3],o,u,i,s)}}function li(e){return{x:e[0],y:e[1]}}function ci(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function hi(e){return e.substring(0,3)}function pi(e,t,n,r){var i,s,o=0,u=t.length,a=n.length;while(o=a)return-1;i=t.charCodeAt(o++);if(i==37){s=Uo[t.charAt(o++)];if(!s||(r=s(e,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}function di(e){return new RegExp("^(?:"+e.map(d3.requote).join("|")+")","i")}function vi(e){var t=new r,n=-1,i=e.length;while(++n68?1900:2e3)}function Ci(e,t,n){zo.lastIndex=0;var r=zo.exec(t.substring(n,n+2));return r?(e.m=r[0]-1,n+=r[0].length):-1}function ki(e,t,n){zo.lastIndex=0;var r=zo.exec(t.substring(n,n+2));return r?(e.d=+r[0],n+=r[0].length):-1}function Li(e,t,n){zo.lastIndex=0;var r=zo.exec(t.substring(n,n+2));return r?(e.H=+r[0],n+=r[0].length):-1}function Ai(e,t,n){zo.lastIndex=0;var r=zo.exec(t.substring(n,n+2));return r?(e.M=+r[0],n+=r[0].length):-1}function Oi(e,t,n){zo.lastIndex=0;var r=zo.exec(t.substring(n,n+2));return r?(e.S=+r[0],n+=r[0].length):-1}function Mi(e,t,n){zo.lastIndex=0;var r=zo.exec(t.substring(n,n+3));return r?(e.L=+r[0],n+=r[0].length):-1}function _i(e,t,n){var r=Wo.get(t.substring(n,n+=2).toLowerCase());return r==null?-1:(e.p=r,n)}function Di(e){var t=e.getTimezoneOffset(),n=t>0?"-":"+",r=~~(Math.abs(t)/60),i=Math.abs(t)%60;return n+Mo(r)+Mo(i)}function Pi(e){return e.toISOString()}function Hi(e,t,n){function r(t){var n=e(t),r=s(n,1);return t-n1)while(ot?1:e>=t?0:NaN},d3.descending=function(e,t){return te?1:t>=e?0:NaN},d3.mean=function(e,t){var n=e.length,r,i=0,s=-1,o=0;if(arguments.length===1)while(++s1&&(e=e.map(t)),e=e.filter(f),e.length?d3.quantile(e.sort(d3.ascending),.5):undefined},d3.min=function(e,t){var n=-1,r=e.length,i,s;if(arguments.length===1){while(++ns&&(i=s)}else{while(++ns&&(i=s)}return i},d3.max=function(e,t){var n=-1,r=e.length,i,s;if(arguments.length===1){while(++ni&&(i=s)}else{while(++ni&&(i=s)}return i},d3.extent=function(e,t){var n=-1,r=e.length,i,s,o;if(arguments.length===1){while(++ns&&(i=s),os&&(i=s),o1);return e+t*n*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(e,t){var n=arguments.length;n<2&&(t=1),n<1&&(e=0);var r=d3.random.normal();return function(){return Math.exp(e+t*r())}},irwinHall:function(e){return function(){for(var t=0,n=0;n>>1;e.call(t,t[s],s)>>1;n0&&(i=s);return i},d3.last=function(e,t){var n=0,r=e.length,i=e[0],s;arguments.length===1&&(t=d3.ascending);while(++n=i.length)return u?u.call(n,t):o?t.sort(o):t;var a=-1,f=t.length,l=i[s++],c,h,p=new r,d,v={};while(++a=i.length)return e;var r=[],o=s[n++],u;for(u in e)r.push({key:u,values:t(e[u],n)});return o&&r.sort(function(e,t){return o(e.key,t.key)}),r}var n={},i=[],s=[],o,u;return n.map=function(t){return e(t,0)},n.entries=function(n){return t(e(n,0),0)},n.key=function(e){return i.push(e),n},n.sortKeys=function(e){return s[i.length-1]=e,n},n.sortValues=function(e){return o=e,n},n.rollup=function(e){return u=e,n},n},d3.keys=function(e){var t=[];for(var n in e)t.push(n);return t},d3.values=function(e){var t=[];for(var n in e)t.push(e[n]);return t},d3.entries=function(e){var t=[];for(var n in e)t.push({key:n,value:e[n]});return t},d3.permute=function(e,t){var n=[],r=-1,i=t.length;while(++rt)r.push(o/i);else while((o=e+n*++s)=200&&e<300||e===304?r:null)}},r.send(null)},d3.text=function(e,t,n){function r(e){n(e&&e.responseText)}arguments.length<3&&(n=t,t=null),d3.xhr(e,t,r)},d3.json=function(e,t){d3.text(e,"application/json",function(e){t(e?JSON.parse(e):null)})},d3.html=function(e,t){d3.text(e,"text/html",function(e){if(e!=null){var n=document.createRange();n.selectNode(document.body),e=n.createContextualFragment(e)}t(e)})},d3.xml=function(e,t,n){function r(e){n(e&&e.responseXML)}arguments.length<3&&(n=t,t=null),d3.xhr(e,t,r)};var ts={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};d3.ns={prefix:ts,qualify:function(e){var t=e.indexOf(":"),n=e;return t>=0&&(n=e.substring(0,t),e=e.substring(t+1)),ts.hasOwnProperty(n)?{space:ts[n],local:e}:e}},d3.dispatch=function(){var e=new d,t=-1,n=arguments.length;while(++t0&&(r=e.substring(n+1),e=e.substring(0,n)),arguments.length<2?this[e].on(r):this[e].on(r,t)},d3.format=function(e){var t=ns.exec(e),n=t[1]||" ",r=t[3]||"",i=t[5],s=+t[6],o=t[7],u=t[8],a=t[9],f=1,l="",c=!1;u&&(u=+u.substring(1)),i&&(n="0",o&&(s-=Math.floor((s-1)/4)));switch(a){case"n":o=!0,a="g";break;case"%":f=100,l="%",a="f";break;case"p":f=100,l="%",a="r";break;case"d":c=!0,u=0;break;case"s":f=-1,a="r"}return a=="r"&&!u&&(a="g"),a=rs.get(a)||g,function(e){if(c&&e%1)return"";var t=e<0&&(e=-e)?"-":r;if(f<0){var h=d3.formatPrefix(e,u);e=h.scale(e),l=h.symbol}else e*=f;e=a(e,u);if(i){var p=e.length+t.length;p=^]))?([+\- ])?(#)?(0)?([0-9]+)?(,)?(\.[0-9]+)?([a-zA-Z%])?/,rs=d3.map({g:function(e,t){return e.toPrecision(t)},e:function(e,t){return e.toExponential(t)},f:function(e,t){return e.toFixed(t)},r:function(e,t){return d3.round(e,t=m(e,t)).toFixed(Math.max(0,Math.min(20,t)))}}),is=["y","z","a","f","p","n","μ","m","","k","M","G","T","P","E","Z","Y"].map(b);d3.formatPrefix=function(e,t){var n=0;return e&&(e<0&&(e*=-1),t&&(e=d3.round(e,m(e,t))),n=1+Math.floor(1e-12+Math.log(e)/Math.LN10),n=Math.max(-24,Math.min(24,Math.floor((n<=0?n+1:n-1)/3)*3))),is[8+n/3]};var ss=T(2),os=T(3),us=function(){return x},as=d3.map({linear:us,poly:T,quad:function(){return ss},cubic:function(){return os},sin:function(){return N},exp:function(){return C},circle:function(){return k},elastic:L,back:A,bounce:function(){return O}}),fs=d3.map({"in":x,out:E,"in-out":S,"out-in":function(e){return S(E(e))}});d3.ease=function(e){var t=e.indexOf("-"),n=t>=0?e.substring(0,t):e,r=t>=0?e.substring(t+1):"in";return n=as.get(n)||us,r=fs.get(r)||x,w(r(n.apply(null,Array.prototype.slice.call(arguments,1))))},d3.event=null,d3.transform=function(e){var t=document.createElementNS(d3.ns.prefix.svg,"g");return(d3.transform=function(e){t.setAttribute("transform",e);var n=t.transform.baseVal.consolidate();return new P(n?n.matrix:cs)})(e)},P.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var ls=180/Math.PI,cs={a:1,b:0,c:0,d:1,e:0,f:0};d3.interpolate=function(e,t){var n=d3.interpolators.length,r;while(--n>=0&&!(r=d3.interpolators[n](e,t)));return r},d3.interpolateNumber=function(e,t){return t-=e,function(n){return e+t*n}},d3.interpolateRound=function(e,t){return t-=e,function(n){return Math.round(e+t*n)}},d3.interpolateString=function(e,t){var n,r,i,s=0,o=0,u=[],a=[],f,l;hs.lastIndex=0;for(r=0;n=hs.exec(t);++r)n.index&&u.push(t.substring(s,o=n.index)),a.push({i:u.length,x:n[0]}),u.push(null),s=hs.lastIndex;s180?l+=360:l-f>180&&(f+=360),r.push({i:n.push(n.pop()+"rotate(",null,")")-2,x:d3.interpolateNumber(f,l)})):l&&n.push(n.pop()+"rotate("+l+")"),c!=h?r.push({i:n.push(n.pop()+"skewX(",null,")")-2,x:d3.interpolateNumber(c,h)}):h&&n.push(n.pop()+"skewX("+h+")"),p[0]!=d[0]||p[1]!=d[1]?(i=n.push(n.pop()+"scale(",null,",",null,")"),r.push({i:i-4,x:d3.interpolateNumber(p[0],d[0])},{i:i-2,x:d3.interpolateNumber(p[1],d[1])})):(d[0]!=1||d[1]!=1)&&n.push(n.pop()+"scale("+d+")"),i=r.length,function(e){var t=-1,s;while(++t180?s-=360:s<-180&&(s+=360),function(e){return Y(n+s*e,r+o*e,i+u*e)+""}},d3.interpolateLab=function(e,t){e=d3.lab(e),t=d3.lab(t);var n=e.l,r=e.a,i=e.b,s=t.l-n,o=t.a-r,u=t.b-i;return function(e){return it(n+s*e,r+o*e,i+u*e)+""}},d3.interpolateHcl=function(e,t){e=d3.hcl(e),t=d3.hcl(t);var n=e.h,r=e.c,i=e.l,s=t.h-n,o=t.c-r,u=t.l-i;return s>180?s-=360:s<-180&&(s+=360),function(e){return tt(n+s*e,r+o*e,i+u*e)+""}},d3.interpolateArray=function(e,t){var n=[],r=[],i=e.length,s=t.length,o=Math.min(e.length,t.length),u;for(u=0;u=0;)if(s=n[r])i&&i!==s.nextSibling&&i.parentNode.insertBefore(s,i),i=s;return this},ks.sort=function(e){e=wt.apply(this,arguments);for(var t=-1,n=this.length;++t=Zs?e?"M0,"+s+"A"+s+","+s+" 0 1,1 0,"+ -s+"A"+s+","+s+" 0 1,1 0,"+s+"M0,"+e+"A"+e+","+e+" 0 1,0 0,"+ -e+"A"+e+","+e+" 0 1,0 0,"+e+"Z":"M0,"+s+"A"+s+","+s+" 0 1,1 0,"+ -s+"A"+s+","+s+" 0 1,1 0,"+s+"Z":e?"M"+s*l+","+s*c+"A"+s+","+s+" 0 "+f+",1 "+s*h+","+s*p+"L"+e*h+","+e*p+"A"+e+","+e+" 0 "+f+",0 "+e*l+","+e*c+"Z":"M"+s*l+","+s*c+"A"+s+","+s+" 0 "+f+",1 "+s*h+","+s*p+"L0,0"+"Z"}var t=en,n=tn,r=nn,i=rn;return e.innerRadius=function(n){return arguments.length?(t=u(n),e):t},e.outerRadius=function(t){return arguments.length?(n=u(t),e):n},e.startAngle=function(t){return arguments.length?(r=u(t),e):r},e.endAngle=function(t){return arguments.length?(i=u(t),e):i},e.centroid=function(){var e=(t.apply(this,arguments)+n.apply(this,arguments))/2,s=(r.apply(this,arguments)+i.apply(this,arguments))/2+Ys;return[Math.cos(s)*e,Math.sin(s)*e]},e};var Ys=-Math.PI/2,Zs=2*Math.PI-1e-6;d3.svg.line=function(){return sn(i)};var eo=d3.map({linear:an,"linear-closed":fn,"step-before":ln,"step-after":cn,basis:gn,"basis-open":yn,"basis-closed":bn,bundle:wn,cardinal:dn,"cardinal-open":hn,"cardinal-closed":pn,monotone:Cn});eo.forEach(function(e,t){t.key=e,t.closed=/-closed$/.test(e)});var to=[0,2/3,1/3,0],no=[0,1/3,2/3,0],ro=[0,1/6,2/3,1/6];d3.svg.line.radial=function(){var e=sn(kn);return e.radius=e.x,delete e.x,e.angle=e.y,delete e.y,e},ln.reverse=cn,cn.reverse=ln,d3.svg.area=function(){return Ln(i)},d3.svg.area.radial=function(){var e=Ln(kn);return e.radius=e.x,delete e.x,e.innerRadius=e.x0,delete e.x0,e.outerRadius=e.x1,delete e.x1,e.angle=e.y,delete e.y,e.startAngle=e.y0,delete e.y0,e.endAngle=e.y1,delete e.y1,e},d3.svg.chord=function(){function e(e,u){var a=t(this,s,e,u),f=t(this,o,e,u);return"M"+a.p0+r(a.r,a.p1,a.a1-a.a0)+(n(a,f)?i(a.r,a.p1,a.r,a.p0):i(a.r,a.p1,f.r,f.p0)+r(f.r,f.p1,f.a1-f.a0)+i(f.r,f.p1,a.r,a.p0))+"Z"}function t(e,t,n,r){var i=t.call(e,n,r),s=a.call(e,i,r),o=f.call(e,i,r)+Ys,u=l.call(e,i,r)+Ys;return{r:s,a0:o,a1:u,p0:[s*Math.cos(o),s*Math.sin(o)],p1:[s*Math.cos(u),s*Math.sin(u)]}}function n(e,t){return e.a0==t.a0&&e.a1==t.a1}function r(e,t,n){return"A"+e+","+e+" 0 "+ +(n>Math.PI)+",1 "+t}function i(e,t,n,r){return"Q 0,0 "+r}var s=An,o=On,a=Mn,f=nn,l=rn;return e.radius=function(t){return arguments.length?(a=u(t),e):a},e.source=function(t){return arguments.length?(s=u(t),e):s},e.target=function(t){return arguments.length?(o=u(t),e):o},e.startAngle=function(t){return arguments.length?(f=u(t),e):f},e.endAngle=function(t){return arguments.length?(l=u(t),e):l},e},d3.svg.diagonal=function(){function e(e,i){var s=t.call(this,e,i),o=n.call(this,e,i),u=(s.y+o.y)/2,a=[s,{x:s.x,y:u},{x:o.x,y:u},o];return a=a.map(r),"M"+a[0]+"C"+a[1]+" "+a[2]+" "+a[3]}var t=An,n=On,r=Pn;return e.source=function(n){return arguments.length?(t=u(n),e):t},e.target=function(t){return arguments.length?(n=u(t),e):n},e.projection=function(t){return arguments.length?(r=t,e):r},e},d3.svg.diagonal.radial=function(){var e=d3.svg.diagonal(),t=Pn,n=e.projection;return e.projection=function(e){return arguments.length?n(Hn(t=e)):t},e},d3.svg.mouse=d3.mouse,d3.svg.touches=d3.touches,d3.svg.symbol=function(){function e(e,r){return(io.get(t.call(this,e,r))||Fn)(n.call(this,e,r))}var t=jn,n=Bn;return e.type=function(n){return arguments.length?(t=u(n),e):t},e.size=function(t){return arguments.length?(n=u(t),e):n},e};var io=d3.map({circle:Fn,cross:function(e){var t=Math.sqrt(e/5)/2;return"M"+ -3*t+","+ -t+"H"+ -t+"V"+ -3*t+"H"+t+"V"+ -t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+ -t+"V"+t+"H"+ -3*t+"Z"},diamond:function(e){var t=Math.sqrt(e/(2*oo)),n=t*oo;return"M0,"+ -t+"L"+n+",0"+" 0,"+t+" "+ -n+",0"+"Z"},square:function(e){var t=Math.sqrt(e)/2;return"M"+ -t+","+ -t+"L"+t+","+ -t+" "+t+","+t+" "+ -t+","+t+"Z"},"triangle-down":function(e){var t=Math.sqrt(e/so),n=t*so/2;return"M0,"+n+"L"+t+","+ -n+" "+ -t+","+ -n+"Z"},"triangle-up":function(e){var t=Math.sqrt(e/so),n=t*so/2;return"M0,"+ -n+"L"+t+","+n+" "+ -t+","+n+"Z"}});d3.svg.symbolTypes=io.keys();var so=Math.sqrt(3),oo=Math.tan(30*Math.PI/180);d3.svg.axis=function(){function e(e){e.each(function(){var e=d3.select(this),c=a==null?t.ticks?t.ticks.apply(t,u):t.domain():a,h=f==null?t.tickFormat?t.tickFormat.apply(t,u):String:f,p=Rn(t,c,l),d=e.selectAll(".minor").data(p,String),v=d.enter().insert("line","g").attr("class","tick minor").style("opacity",1e-6),m=d3.transition(d.exit()).style("opacity",1e-6).remove(),g=d3.transition(d).style("opacity",1),y=e.selectAll("g").data(c,String),b=y.enter().insert("g","path").style("opacity",1e-6),w=d3.transition(y.exit()).style("opacity",1e-6).remove(),E=d3.transition(y).style("opacity",1),S,x=Dt(t),T=e.selectAll(".domain").data([0]),N=T.enter().append("path").attr("class","domain"),C=d3.transition(T),k=t.copy(),L=this.__chart__||k;this.__chart__=k,b.append("line").attr("class","tick"),b.append("text");var A=b.select("line"),O=E.select("line"),M=y.select("text").text(h),_=b.select("text"),D=E.select("text");switch(n){case"bottom":S=In,v.attr("y2",i),g.attr("x2",0).attr("y2",i),A.attr("y2",r),_.attr("y",Math.max(r,0)+o),O.attr("x2",0).attr("y2",r),D.attr("x",0).attr("y",Math.max(r,0)+o),M.attr("dy",".71em").attr("text-anchor","middle"),C.attr("d","M"+x[0]+","+s+"V0H"+x[1]+"V"+s);break;case"top":S=In,v.attr("y2",-i),g.attr("x2",0).attr("y2",-i),A.attr("y2",-r),_.attr("y",-(Math.max(r,0)+o)),O.attr("x2",0).attr("y2",-r),D.attr("x",0).attr("y",-(Math.max(r,0)+o)),M.attr("dy","0em").attr("text-anchor","middle"),C.attr("d","M"+x[0]+","+ -s+"V0H"+x[1]+"V"+ -s);break;case"left":S=qn,v.attr("x2",-i),g.attr("x2",-i).attr("y2",0),A.attr("x2",-r),_.attr("x",-(Math.max(r,0)+o)),O.attr("x2",-r).attr("y2",0),D.attr("x",-(Math.max(r,0)+o)).attr("y",0),M.attr("dy",".32em").attr("text-anchor","end"),C.attr("d","M"+ -s+","+x[0]+"H0V"+x[1]+"H"+ -s);break;case"right":S=qn,v.attr("x2",i),g.attr("x2",i).attr("y2",0),A.attr("x2",r),_.attr("x",Math.max(r,0)+o),O.attr("x2",r).attr("y2",0),D.attr("x",Math.max(r,0)+o).attr("y",0),M.attr("dy",".32em").attr("text-anchor","start"),C.attr("d","M"+s+","+x[0]+"H0V"+x[1]+"H"+s)}if(t.ticks)b.call(S,L),E.call(S,k),w.call(S,k),v.call(S,L),g.call(S,k),m.call(S,k);else{var P=k.rangeBand()/2,H=function(e){return k(e)+P};b.call(S,H),E.call(S,H)}})}var t=d3.scale.linear(),n="bottom",r=6,i=6,s=6,o=3,u=[10],a=null,f,l=0;return e.scale=function(n){return arguments.length?(t=n,e):t},e.orient=function(t){return arguments.length?(n=t,e):n},e.ticks=function(){return arguments.length?(u=arguments,e):u},e.tickValues=function(t){return arguments.length?(a=t,e):a},e.tickFormat=function(t){return arguments.length?(f=t,e):f},e.tickSize=function(t,n,o){if(!arguments.length)return r;var u=arguments.length-1;return r=+t,i=u>1?+n:r,s=u>0?+arguments[u]:r,e},e.tickPadding=function(t){return arguments.length?(o=+t,e):o},e.tickSubdivide=function(t){return arguments.length?(l=+t,e):l},e},d3.svg.brush=function(){function e(s){s.each(function(){var s=d3.select(this),f=s.selectAll(".background").data([0]),l=s.selectAll(".extent").data([0]),c=s.selectAll(".resize").data(a,String),h;s.style("pointer-events","all").on("mousedown.brush",i).on("touchstart.brush",i),f.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),l.enter().append("rect").attr("class","extent").style("cursor","move"),c.enter().append("g").attr("class",function(e){return"resize "+e}).style("cursor",function(e){return uo[e]}).append("rect").attr("x",function(e){return/[ew]$/.test(e)?-3:null}).attr("y",function(e){return/^[ns]/.test(e)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),c.style("display",e.empty()?"none":null),c.exit().remove(),o&&(h=Dt(o),f.attr("x",h[0]).attr("width",h[1]-h[0]),n(s)),u&&(h=Dt(u),f.attr("y",h[0]).attr("height",h[1]-h[0]),r(s)),t(s)})}function t(e){e.selectAll(".resize").attr("transform",function(e){return"translate("+f[+/e$/.test(e)][0]+","+f[+/^s/.test(e)][1]+")"})}function n(e){e.select(".extent").attr("x",f[0][0]),e.selectAll(".extent,.n>rect,.s>rect").attr("width",f[1][0]-f[0][0])}function r(e){e.select(".extent").attr("y",f[0][1]),e.selectAll(".extent,.e>rect,.w>rect").attr("height",f[1][1]-f[0][1])}function i(){function i(){var e=d3.event.changedTouches;return e?d3.touches(v,e)[0]:d3.mouse(v)}function a(){d3.event.keyCode==32&&(S||(x=null,T[0]-=f[1][0],T[1]-=f[1][1],S=2),M())}function c(){d3.event.keyCode==32&&S==2&&(T[0]+=f[1][0],T[1]+=f[1][1],S=0,M())}function h(){var e=i(),s=!1;N&&(e[0]+=N[0],e[1]+=N[1]),S||(d3.event.altKey?(x||(x=[(f[0][0]+f[1][0])/2,(f[0][1]+f[1][1])/2]),T[0]=f[+(e[0]0?a=e:a=0:e>0&&(r.start({type:"start",alpha:a=e}),d3.timer(n.tick)),n):a},n.start=function(){function e(e,n){var i=t(r),s=-1,o=i.length,u;while(++si&&(i=u),r.push(u)}for(o=0;o0){s=-1;while(++s=a[0]&&d<=a[1]&&(l=o[d3.bisect(f,d,1,h)-1],l.y+=p,l.push(e[s]))}return o}var t=!0,n=Number,r=fr,i=ur;return e.value=function(t){return arguments.length?(n=t,e):n},e.range=function(t){return arguments.length?(r=u(t),e):r},e.bins=function(t){return arguments.length?(i=typeof t=="number"?function(e){return ar(e,t)}:u(t),e):i},e.frequency=function(n){return arguments.length?(t=!!n,e):t},e},d3.layout.hierarchy=function(){function e(t,o,u){var a=i.call(n,t,o),f=vo?t:{data:t};f.depth=o,u.push(f);if(a&&(c=a.length)){var l=-1,c,h=f.children=[],p=0,d=o+1,v;while(++l0){var l=n*f/2;Hr(o,function(e){e.r+=l}),Hr(o,br),Hr(o,function(e){e.r-=l}),f=Math.max(2*o.r/u,2*o.r/a)}return Sr(o,u/2,a/2,1/f),s}var t=d3.layout.hierarchy().sort(vr),n=0,r=[1,1];return e.size=function(t){return arguments.length?(r=t,e):r},e.padding=function(t){return arguments.length?(n=+t,e):n},lr(e,t)},d3.layout.cluster=function(){function e(e,i){var s=t.call(this,e,i),o=s[0],u,a=0,f,l;Hr(o,function(e){var t=e.children;t&&t.length?(e.x=Nr(t),e.y=Tr(t)):(e.x=u?a+=n(e,u):0,e.y=0,u=e)});var c=Cr(o),h=kr(o),p=c.x-n(c,h)/2,d=h.x+n(h,c)/2;return Hr(o,function(e){e.x=(e.x-p)/(d-p)*r[0],e.y=(1-(o.y?e.y/o.y:1))*r[1]}),s}var t=d3.layout.hierarchy().sort(null).value(null),n=Lr,r=[1,1];return e.separation=function(t){return arguments.length?(n=t,e):n},e.size=function(t){return arguments.length?(r=t,e):r},lr(e,t)},d3.layout.tree=function(){function e(e,i){function s(e,t){var r=e.children,i=e._tree;if(r&&(o=r.length)){var o,a=r[0],f,l=a,c,h=-1;while(++h0&&(jr(Fr(o,e,r),e,h),a+=h,f+=h),l+=o._tree.mod,a+=i._tree.mod,c+=u._tree.mod,f+=s._tree.mod;o&&!Or(s)&&(s._tree.thread=o,s._tree.mod+=l-f),i&&!Ar(u)&&(u._tree.thread=i,u._tree.mod+=a-c,r=e)}return r}var a=t.call(this,e,i),f=a[0];Hr(f,function(e,t){e._tree={ancestor:e,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),s(f),o(f,-f._tree.prelim);var l=Mr(f,Dr),c=Mr(f,_r),h=Mr(f,Pr),p=l.x-n(l,c)/2,d=c.x+n(c,l)/2,v=h.depth||1;return Hr(f,function(e){e.x=(e.x-p)/(d-p)*r[0],e.y=e.depth/v*r[1],delete e._tree}),a}var t=d3.layout.hierarchy().sort(null).value(null),n=Lr,r=[1,1];return e.separation=function(t){return arguments.length?(n=t,e):n},e.size=function(t){return arguments.length?(r=t,e):r},lr(e,t)},d3.layout.treemap=function(){function e(e,t){var n=-1,r=e.length,i,s;while(++n0)u.push(f=a[d-1]),u.area+=f.area,(h=r(u,p))<=c?(a.pop(),c=h):(u.area-=u.pop().area,i(u,p,o,!1),p=Math.min(o.dx,o.dy),u.length=u.area=0,c=Infinity);u.length&&(i(u,p,o,!0),u.length=u.area=0),s.forEach(t)}}function n(t){var r=t.children;if(r&&r.length){var s=l(t),o=r.slice(),u,a=[];e(o,s.dx*s.dy/t.value),a.area=0;while(u=o.pop())a.push(u),a.area+=u.area,u.z!=null&&(i(a,u.z?s.dx:s.dy,s,!o.length),a.length=a.area=0);r.forEach(n)}}function r(e,t){var n=e.area,r,i=0,s=Infinity,o=-1,u=e.length;while(++oi&&(i=r)}return n*=n,t*=t,n?Math.max(t*i*p/n,n/(t*s*p)):Infinity}function i(e,t,n,r){var i=-1,s=e.length,o=n.x,a=n.y,f=t?u(e.area/t):0,l;if(t==n.dx){if(r||f>n.dy)f=n.dy;while(++in.dx)f=n.dx;while(++i50?n:s<-140?r:o<21?i:t)(e)}var t=d3.geo.albers(),n=d3.geo.albers().origin([-160,60]).parallels([55,65]),r=d3.geo.albers().origin([-160,20]).parallels([8,18]),i=d3.geo.albers().origin([-60,10]).parallels([8,18]);return e.scale=function(s){return arguments.length?(t.scale(s),n.scale(s*.6),r.scale(s),i.scale(s*1.5),e.translate(t.translate())):t.scale()},e.translate=function(s){if(!arguments.length)return t.translate();var o=t.scale()/1e3,u=s[0],a=s[1];return t.translate(s),n.translate([u-400*o,a+170*o]),r.translate([u-190*o,a+200*o]),i.translate([u+580*o,a+430*o]),e},e.scale(t.scale())},d3.geo.bonne=function(){function e(e){var u=e[0]*mo-r,a=e[1]*mo-i;if(s){var f=o+s-a,l=u*Math.cos(a)/f;u=f*Math.sin(l),a=f*Math.cos(l)-o}else u*=Math.cos(a),a*=-1;return[t*u+n[0],t*a+n[1]]}var t=200,n=[480,250],r,i,s,o;return e.invert=function(e){var i=(e[0]-n[0])/t,u=(e[1]-n[1])/t;if(s){var a=o+u,f=Math.sqrt(i*i+a*a);u=o+s-f,i=r+f*Math.atan2(i,a)/Math.cos(u)}else u*=-1,i/=Math.cos(u);return[i/mo,u/mo]},e.parallel=function(t){return arguments.length?(o=1/Math.tan(s=t*mo),e):s/mo},e.origin=function(t){return arguments.length?(r=t[0]*mo,i=t[1]*mo,e):[r/mo,i/mo]},e.scale=function( -n){return arguments.length?(t=+n,e):t},e.translate=function(t){return arguments.length?(n=[+t[0],+t[1]],e):n},e.origin([0,0]).parallel(45)},d3.geo.equirectangular=function(){function e(e){var r=e[0]/360,i=-e[1]/360;return[t*r+n[0],t*i+n[1]]}var t=500,n=[480,250];return e.invert=function(e){var r=(e[0]-n[0])/t,i=(e[1]-n[1])/t;return[360*r,-360*i]},e.scale=function(n){return arguments.length?(t=+n,e):t},e.translate=function(t){return arguments.length?(n=[+t[0],+t[1]],e):n},e},d3.geo.mercator=function(){function e(e){var r=e[0]/360,i=-(Math.log(Math.tan(Math.PI/4+e[1]*mo/2))/mo)/360;return[t*r+n[0],t*Math.max(-0.5,Math.min(.5,i))+n[1]]}var t=500,n=[480,250];return e.invert=function(e){var r=(e[0]-n[0])/t,i=(e[1]-n[1])/t;return[360*r,2*Math.atan(Math.exp(-360*i*mo))/mo-90]},e.scale=function(n){return arguments.length?(t=+n,e):t},e.translate=function(t){return arguments.length?(n=[+t[0],+t[1]],e):n},e},d3.geo.path=function(){function e(e,t){typeof s=="function"&&(o=zr(s.apply(this,arguments))),f(e);var n=a.length?a.join(""):null;return a=[],n}function t(e){return u(e).join(",")}function n(e){var t=i(e[0]),n=0,r=e.length;while(++n0){a.push("M");while(++o0){a.push("M");while(++lr&&(r=e),si&&(i=s)}),[[t,n],[r,i]]};var go={Feature:Xr,FeatureCollection:Vr,GeometryCollection:$r,LineString:Jr,MultiLineString:Kr,MultiPoint:Jr,MultiPolygon:Qr,Point:Gr,Polygon:Yr};d3.geo.circle=function(){function e(){}function t(e){return a.distance(e)=l*l+c*c?r[s].index=-1:(r[h].index=-1,d=r[s].angle,h=s,p=o)):(d=r[s].angle,h=s,p=o);i.push(u);for(s=0,o=0;s<2;++o)r[o].index!==-1&&(i.push(r[o].index),s++);v=i.length;for(;o=0?(n=e.ep.r,r=e.ep.l):(n=e.ep.l,r=e.ep.r),e.a===1?(o=n?n.y:-1e6,i=e.c-e.b*o,u=r?r.y:1e6,s=e.c-e.b*u):(i=n?n.x:-1e6,o=e.c-e.a*i,s=r?r.x:1e6,u=e.c-e.a*s);var a=[i,o],f=[s,u];t[e.region.l.index].push(a,f),t[e.region.r.index].push(a,f)}),t.map(function(t,n){var r=e[n][0],i=e[n][1];return t.forEach(function(e){e.angle=Math.atan2(e[0]-r,e[1]-i)}),t.sort(function(e,t){return e.angle-t.angle}).filter(function(e,n){return!n||e.angle-t[n-1].angle>1e-10})})};var wo={l:"r",r:"l"};d3.geom.delaunay=function(e){var t=e.map(function(){return[]}),n=[];return ui(e,function(n){t[n.region.l.index].push(e[n.region.r.index])}),t.forEach(function(t,r){var i=e[r],s=i[0],o=i[1];t.forEach(function(e){e.angle=Math.atan2(e[0]-s,e[1]-o)}),t.sort(function(e,t){return e.angle-t.angle});for(var u=0,a=t.length-1;u=u,l=t.y>=a,c=(l<<1)+f;e.leaf=!1,e=e.nodes[c]||(e.nodes[c]=ai()),f?n=u:i=u,l?r=a:o=a,s(e,t,n,r,i,o)}var u,a=-1,f=e.length;f&&isNaN(e[0].x)&&(e=e.map(li));if(arguments.length<5)if(arguments.length===3)i=r=n,n=t;else{t=n=Infinity,r=i=-Infinity;while(++ar&&(r=u.x),u.y>i&&(i=u.y);var l=r-t,c=i-n;l>c?i=n+l:r=t+c}var h=ai();return h.add=function(e){s(h,e,t,n,r,i)},h.visit=function(e){fi(e,h,t,n,r,i)},e.forEach(h.add),h},d3.time={};var Eo=Date,So=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];ci.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){xo.setUTCDate.apply(this._,arguments)},setDay:function(){xo.setUTCDay.apply(this._,arguments)},setFullYear:function(){xo.setUTCFullYear.apply(this._,arguments)},setHours:function(){xo.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){xo.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){xo.setUTCMinutes.apply(this._,arguments)},setMonth:function(){xo.setUTCMonth.apply(this._,arguments)},setSeconds:function(){xo.setUTCSeconds.apply(this._,arguments)},setTime:function(){xo.setTime.apply(this._,arguments)}};var xo=Date.prototype,To="%a %b %e %H:%M:%S %Y",No="%m/%d/%y",Co="%H:%M:%S",ko=So,Lo=ko.map(hi),Ao=["January","February","March","April","May","June","July","August","September","October","November","December"],Oo=Ao.map(hi);d3.time.format=function(e){function t(t){var r=[],i=-1,s=0,o,u;while(++i=12?"PM":"AM"},S:function(e){return Mo(e.getSeconds())},U:function(e){return Mo(d3.time.sundayOfYear(e))},w:function(e){return e.getDay()},W:function(e){return Mo(d3.time.mondayOfYear(e))},x:d3.time.format(No),X:d3.time.format(Co),y:function(e){return Mo(e.getFullYear()%100)},Y:function(e){return Do(e.getFullYear()%1e4)},Z:Di,"%":function(e){return"%"}},Uo={a:mi,A:gi,b:yi,B:bi,c:wi,d:ki,e:ki,H:Li,I:Li,L:Mi,m:Ci,M:Ai,p:_i,S:Oi,x:Ei,X:Si,y:Ti,Y:xi},zo=/^\s*\d+/,Wo=d3.map({am:0,pm:1});d3.time.format.utc=function(e){function t(e){try{Eo=ci;var t=new Eo;return t._=e,n(t)}finally{Eo=Date}}var n=d3.time.format(e);return t.parse=function(e){try{Eo=ci;var t=n.parse(e);return t&&t._}finally{Eo=Date}},t.toString=n.toString,t};var Xo=d3.time.format.utc("%Y-%m-%dT%H:%M:%S.%LZ");d3.time.format.iso=Date.prototype.toISOString?Pi:Xo,Pi.parse=function(e){var t=new Date(e);return isNaN(t)?null:t},Pi.toString=Xo.toString,d3.time.second=Hi(function(e){return new Eo(Math.floor(e/1e3)*1e3)},function(e,t){e.setTime(e.getTime()+Math.floor(t)*1e3)},function(e){return e.getSeconds()}),d3.time.seconds=d3.time.second.range,d3.time.seconds.utc=d3.time.second.utc.range,d3.time.minute=Hi(function(e){return new Eo(Math.floor(e/6e4)*6e4)},function(e,t){e.setTime(e.getTime()+Math.floor(t)*6e4)},function(e){return e.getMinutes()}),d3.time.minutes=d3.time.minute.range,d3.time.minutes.utc=d3.time.minute.utc.range,d3.time.hour=Hi(function(e){var t=e.getTimezoneOffset()/60;return new Eo((Math.floor(e/36e5-t)+t)*36e5)},function(e,t){e.setTime(e.getTime()+Math.floor(t)*36e5)},function(e){return e.getHours()}),d3.time.hours=d3.time.hour.range,d3.time.hours.utc=d3.time.hour.utc.range,d3.time.day=Hi(function(e){var t=new Eo(1970,0);return t.setFullYear(e.getFullYear(),e.getMonth(),e.getDate()),t},function(e,t){e.setDate(e.getDate()+t)},function(e){return e.getDate()-1}),d3.time.days=d3.time.day.range,d3.time.days.utc=d3.time.day.utc.range,d3.time.dayOfYear=function(e){var t=d3.time.year(e);return Math.floor((e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*6e4)/864e5)},So.forEach(function(e,t){e=e.toLowerCase(),t=7-t;var n=d3.time[e]=Hi(function(e){return(e=d3.time.day(e)).setDate(e.getDate()-(e.getDay()+t)%7),e},function(e,t){e.setDate(e.getDate()+Math.floor(t)*7)},function(e){var n=d3.time.year(e).getDay();return Math.floor((d3.time.dayOfYear(e)+(n+t)%7)/7)-(n!==t)});d3.time[e+"s"]=n.range,d3.time[e+"s"].utc=n.utc.range,d3.time[e+"OfYear"]=function(e){var n=d3.time.year(e).getDay();return Math.floor((d3.time.dayOfYear(e)+(n+t)%7)/7)}}),d3.time.week=d3.time.sunday,d3.time.weeks=d3.time.sunday.range,d3.time.weeks.utc=d3.time.sunday.utc.range,d3.time.weekOfYear=d3.time.sundayOfYear,d3.time.month=Hi(function(e){return e=d3.time.day(e),e.setDate(1),e},function(e,t){e.setMonth(e.getMonth()+t)},function(e){return e.getMonth()}),d3.time.months=d3.time.month.range,d3.time.months.utc=d3.time.month.utc.range,d3.time.year=Hi(function(e){return e=d3.time.day(e),e.setMonth(0,1),e},function(e,t){e.setFullYear(e.getFullYear()+t)},function(e){return e.getFullYear()}),d3.time.years=d3.time.year.range,d3.time.years.utc=d3.time.year.utc.range;var Vo=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],$o=[[d3.time.second,1],[d3.time.second,5],[d3.time.second,15],[d3.time.second,30],[d3.time.minute,1],[d3.time.minute,5],[d3.time.minute,15],[d3.time.minute,30],[d3.time.hour,1],[d3.time.hour,3],[d3.time.hour,6],[d3.time.hour,12],[d3.time.day,1],[d3.time.day,2],[d3.time.week,1],[d3.time.month,1],[d3.time.month,3],[d3.time.year,1]],Jo=[[d3.time.format("%Y"),function(e){return!0}],[d3.time.format("%B"),function(e){return e.getMonth()}],[d3.time.format("%b %d"),function(e){return e.getDate()!=1}],[d3.time.format("%a %d"),function(e){return e.getDay()&&e.getDate()!=1}],[d3.time.format("%I %p"),function(e){return e.getHours()}],[d3.time.format("%I:%M"),function(e){return e.getMinutes()}],[d3.time.format(":%S"),function(e){return e.getSeconds()}],[d3.time.format(".%L"),function(e){return e.getMilliseconds()}]],Ko=d3.scale.linear(),Qo=qi(Jo);$o.year=function(e,t){return Ko.domain(e.map(Ui)).ticks(t).map(Ri)},d3.time.scale=function(){return ji(d3.scale.linear(),$o,Qo)};var Go=$o.map(function(e){return[e[0].utc,e[1]]}),Yo=[[d3.time.format.utc("%Y"),function(e){return!0}],[d3.time.format.utc("%B"),function(e){return e.getUTCMonth()}],[d3.time.format.utc("%b %d"),function(e){return e.getUTCDate()!=1}],[d3.time.format.utc("%a %d"),function(e){return e.getUTCDay()&&e.getUTCDate()!=1}],[d3.time.format.utc("%I %p"),function(e){return e.getUTCHours()}],[d3.time.format.utc("%I:%M"),function(e){return e.getUTCMinutes()}],[d3.time.format.utc(":%S"),function(e){return e.getUTCSeconds()}],[d3.time.format.utc(".%L"),function(e){return e.getUTCMilliseconds()}]],Zo=qi(Yo);Go.year=function(e,t){return Ko.domain(e.map(Wi)).ticks(t).map(zi)},d3.time.scale.utc=function(){return ji(d3.scale.linear(),Go,Zo)}})(); \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js b/spring-cloud-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js deleted file mode 100644 index 40d62eb5..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js +++ /dev/null @@ -1,12 +0,0 @@ -/* -* jQuery TinySort - A plugin to sort child nodes by (sub) contents or attributes. -* -* Version: 1.0.5 -* -* Copyright (c) 2008-2011 Ron Valstar http://www.sjeiti.com/ -* -* Dual licensed under the MIT and GPL licenses: -* http://www.opensource.org/licenses/mit-license.php -* http://www.gnu.org/licenses/gpl.html -*/ -(function(b){b.tinysort={id:"TinySort",version:"1.0.5",copyright:"Copyright (c) 2008-2011 Ron Valstar",uri:"http://tinysort.sjeiti.com/",defaults:{order:"asc",attr:"",place:"start",returns:false,useVal:false}};b.fn.extend({tinysort:function(h,j){if(h&&typeof(h)!="string"){j=h;h=null}var e=b.extend({},b.tinysort.defaults,j);var p={};this.each(function(t){var v=(!h||h=="")?b(this):b(this).find(h);var u=e.order=="rand"?""+Math.random():(e.attr==""?(e.useVal?v.val():v.text()):v.attr(e.attr));var s=b(this).parent();if(!p[s]){p[s]={s:[],n:[]}}if(v.length>0){p[s].s.push({s:u,e:b(this),n:t})}else{p[s].n.push({e:b(this),n:t})}});for(var g in p){var d=p[g];d.s.sort(function k(t,s){var i=t.s.toLowerCase?t.s.toLowerCase():t.s;var u=s.s.toLowerCase?s.s.toLowerCase():s.s;if(c(t.s)&&c(s.s)){i=parseFloat(t.s);u=parseFloat(s.s)}return(e.order=="asc"?1:-1)*(iu?1:0))})}var m=[];for(var g in p){var d=p[g];var n=[];var f=b(this).length;switch(e.place){case"first":b.each(d.s,function(s,t){f=Math.min(f,t.n)});break;case"org":b.each(d.s,function(s,t){n.push(t.n)});break;case"end":f=d.n.length;break;default:f=0}var q=[0,0];for(var l=0;l=f&&l0?d[1]:false}function a(e,f){var d=false;b.each(e,function(h,g){if(!d){d=g==f}});return d}b.fn.TinySort=b.fn.Tinysort=b.fn.tsort=b.fn.tinysort})(jQuery); \ No newline at end of file diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/js/tmpl.js b/spring-cloud-netflix-hystrix/src/main/resources/static/js/tmpl.js deleted file mode 100644 index d7098f78..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/js/tmpl.js +++ /dev/null @@ -1,43 +0,0 @@ - -//Simple JavaScript Templating -//John Resig - http://ejohn.org/ - MIT Licensed -// http://ejohn.org/blog/javascript-micro-templating/ -(function(window, undefined) { - var cache = {}; - - window.tmpl = function tmpl(str, data) { - try { - // Figure out if we're getting a template, or if we need to - // load the template - and be sure to cache the result. - var fn = !/\W/.test(str) ? - cache[str] = cache[str] || - tmpl(document.getElementById(str).innerHTML) : - - // Generate a reusable function that will serve as a template - // generator (and which will be cached). - new Function("obj", - "var p=[],print=function(){p.push.apply(p,arguments);};" + - - // Introduce the data as local variables using with(){} - "with(obj){p.push('" + - - // Convert the template into pure JavaScript - str - .replace(/[\r\t\n]/g, " ") - .split("<%").join("\t") - .replace(/((^|%>)[^\t]*)'/g, "$1\r") - .replace(/\t=(.*?)%>/g, "',$1,'") - .split("\t").join("');") - .split("%>").join("p.push('") - .split("\r").join("\\'") - + "');}return p.join('');"); - - //console.log(fn); - - // Provide some basic currying to the user - return data ? fn(data) : fn; - }catch(e) { - console.log(e); - } - }; -})(window); diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.css b/spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.css deleted file mode 100644 index a38647f0..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.css +++ /dev/null @@ -1,101 +0,0 @@ -.container { - padding-left: 20px; - padding-right: 20px; -} - -.row { - width: 100%; - margin: 0 auto; - overflow: hidden; -} - -.spacer { - width: 100%; - margin: 0 auto; - padding-top:4px; - clear:both; -} - - -.last { - margin-right: 0px; -} - -.menubar { - overflow: hidden; - border-bottom: 1px solid black; -} - -.menubar div { - padding-bottom:5px; - - margin: 0 auto; - overflow: hidden; - - font-size: 80%; - font-family:'Bookman Old Style',Bookman,'URW Bookman L','Palatino Linotype',serif; - - float:left; -} - -.menubar .title { - float: left; - padding-right: 20px; - - font-size: 110%; - font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; - font-weight: bold; - - vertical-align: bottom; -} - -.menubar .menu_actions { - float: left; - position:relative; - top: 4px; -} - -.menubar .menu_legend { - float: right; - position:relative; - top: 4px; - -} - -h3.sectionHeader { - color: black; - font-size: 110%; - padding-top: 4px; - padding-bottom: 4px; - padding-left: 8px; - font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; - background: lightgrey; -} - -.success { - color: green; -} -.shortCircuited { - color: blue; -} -.timeout { - color: #FF9900; /* shade of orange */ -} -.failure { - color: red; -} - -.rejected { - color: purple; -} - -.exceptionsThrown { - color: brown; -} - -@media screen and (max-width: 1100px) { - .container { - padding-left: 5px; - padding-right: 5px; - } -} diff --git a/spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.html b/spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.html deleted file mode 100644 index ec51e50e..00000000 --- a/spring-cloud-netflix-hystrix/src/main/resources/static/monitor/monitor.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - Hystrix Monitor - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
Loading ...
- -
-
- -
- -
-
Loading ...
-
- - - - - - - -