params = request.getParameterMap();
+ for (String key : params.keySet()) {
+ if (!key.equals("origin")) {
+ String[] values = params.get(key);
+ String value = values[0].trim();
+ if (hasFirstParameter) {
+ url.append("&");
+ } else {
+ url.append("?");
+ hasFirstParameter = true;
+ }
+ url.append(key).append("=").append(value);
+ }
+ }
+ String proxyUrl = url.toString();
+ logger.info("\n\nProxy opening connection to: " + proxyUrl + "\n\n");
+ try {
+ httpget = new HttpGet(proxyUrl);
+ HttpClient client = ProxyConnectionManager.httpClient;
+ HttpResponse httpResponse = client.execute(httpget);
+ int statusCode = httpResponse.getStatusLine().getStatusCode();
+ if (statusCode == HttpStatus.SC_OK) {
+ // writeTo swallows exceptions and never quits even if outputstream is throwing IOExceptions (such as broken pipe) ... since the inputstream is infinite
+ // httpResponse.getEntity().writeTo(new OutputStreamWrapper(response.getOutputStream()));
+ // so I copy it manually ...
+ is = httpResponse.getEntity().getContent();
+
+ // set headers
+ for (Header header : httpResponse.getAllHeaders()) {
+ response.addHeader(header.getName(), header.getValue());
+ }
+
+ // copy data from source to response
+ OutputStream os = response.getOutputStream();
+ int b = -1;
+ while ((b = is.read()) != -1) {
+ try {
+ os.write(b);
+ if (b == 10 /** flush buffer on line feed */) {
+ os.flush();
+ }
+ } catch (Exception e) {
+ if (e.getClass().getSimpleName().equalsIgnoreCase("ClientAbortException")) {
+ // don't throw an exception as this means the user closed the connection
+ logger.debug("Connection closed by client. Will stop proxying ...");
+ // break out of the while loop
+ break;
+ } else {
+ // received unknown error while writing so throw an exception
+ throw new RuntimeException(e);
+ }
+ }
+ }
+ }
+ } catch (Exception e) {
+ logger.error("Error proxying request: " + url, e);
+ } finally {
+ if (httpget != null) {
+ try {
+ httpget.abort();
+ } catch (Exception e) {
+ logger.error("failed aborting proxy connection.", e);
+ }
+ }
+
+ // httpget.abort() MUST be called first otherwise is.close() hangs (because data is still streaming?)
+ if (is != null) {
+ // this should already be closed by httpget.abort() above
+ try {
+ is.close();
+ } catch (Exception e) {
+ // e.printStackTrace();
+ }
+ }
+ }
+ }
+
+ private static class ProxyConnectionManager {
+ private final static PoolingClientConnectionManager threadSafeConnectionManager = new PoolingClientConnectionManager();
+ private final static HttpClient httpClient = new DefaultHttpClient(threadSafeConnectionManager);
+
+ static {
+ logger.debug("Initialize ProxyConnectionManager");
+ /* common settings */
+ HttpParams httpParams = httpClient.getParams();
+ HttpConnectionParams.setConnectionTimeout(httpParams, 5000);
+ HttpConnectionParams.setSoTimeout(httpParams, 10000);
+
+ /* number of connections to allow */
+ threadSafeConnectionManager.setDefaultMaxPerRoute(400);
+ threadSafeConnectionManager.setMaxTotal(400);
+ }
+ }
+}
diff --git a/spring-platform-netflix-hystrix/src/main/resources/META-INF/spring.factories b/spring-platform-netflix-hystrix/src/main/resources/META-INF/spring.factories
new file mode 100644
index 00000000..87096b50
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/META-INF/spring.factories
@@ -0,0 +1,8 @@
+#org.springframework.context.ApplicationListener=\
+#org.springframework.platform.netflix.eureka.EurekaStartingListener,\
+#org.springframework.platform.netflix.eureka.EurekaUpListener,\
+#org.springframework.platform.netflix.eureka.EurekaOutOfServiceListener
+
+#org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
+#org.springframework.platform.netflix.archaius.ArchaiusAutoConfiguration,\
+#org.springframework.platform.netflix.feign.FeignAutoConfiguration
diff --git a/spring-platform-netflix-hystrix/src/main/resources/application.yml b/spring-platform-netflix-hystrix/src/main/resources/application.yml
new file mode 100644
index 00000000..0510b269
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/application.yml
@@ -0,0 +1,40 @@
+info:
+ component: Hystrix Dashboard
+
+endpoints:
+ restart:
+ enabled: true
+ shutdown:
+ enabled: true
+
+server:
+ port: 7979
+ context-path: /hystrix-dashboard
+
+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-platform-netflix-hystrix/src/main/resources/bootstrap.yml b/spring-platform-netflix-hystrix/src/main/resources/bootstrap.yml
new file mode 100644
index 00000000..3a561da4
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/bootstrap.yml
@@ -0,0 +1,6 @@
+spring:
+ application:
+ name: hystrixdashboard
+ platform:
+ config:
+ uri: http://localhost:${config.port:8888}
\ No newline at end of file
diff --git a/spring-platform-netflix-hystrix/src/main/resources/hystrix/stream/hystrix.stream b/spring-platform-netflix-hystrix/src/main/resources/hystrix/stream/hystrix.stream
new file mode 100644
index 00000000..318b2955
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/hystrix/stream/hystrix.stream
@@ -0,0 +1,809 @@
+: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-platform-netflix-hystrix/src/main/resources/log4j.properties b/spring-platform-netflix-hystrix/src/main/resources/log4j.properties
new file mode 100644
index 00000000..91374f67
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/log4j.properties
@@ -0,0 +1,6 @@
+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-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css
new file mode 100644
index 00000000..71d5ee39
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.css
@@ -0,0 +1,196 @@
+.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-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js
new file mode 100644
index 00000000..dc375759
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/hystrixCommand.js
@@ -0,0 +1,536 @@
+
+(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-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon-20.png b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon-20.png
new file mode 100644
index 00000000..2833fe2c
Binary files /dev/null and b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon-20.png differ
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon.png b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon.png
new file mode 100644
index 00000000..e007dd39
Binary files /dev/null and b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/magnifying-glass-icon.png differ
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html
new file mode 100644
index 00000000..e50a3524
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuit.html
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+ <% 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') { %>
+
+
<%= reportingHosts %>
+ <% } else { %>
+
+
Single
+ <% } %>
+
+
<%= getInstanceAverage(latencyExecute['90'], reportingHosts, false) %> ms
+
+
+
+
<%= getInstanceAverage(latencyExecute['50'], reportingHosts, false) %> ms
+
+
<%= getInstanceAverage(latencyExecute['99'], reportingHosts, false) %> ms
+
+
+
+
<%= latencyExecute_mean %> ms
+
+
<%= getInstanceAverage(latencyExecute['99.5'], reportingHosts, false) %> ms
+
+
+
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html
new file mode 100644
index 00000000..4d19dbe0
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitContainer.html
@@ -0,0 +1,40 @@
+
+ <%
+ 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-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html
new file mode 100644
index 00000000..5b8c0fae
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixCommand/templates/hystrixCircuitProperties.html
@@ -0,0 +1,6 @@
+
+
+
<%= sla_medianLastMinute %> ms
+
+
<%= sla_percentile99LastMinute %> ms
+
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css
new file mode 100644
index 00000000..e82ea5cc
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.css
@@ -0,0 +1,141 @@
+.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-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js
new file mode 100644
index 00000000..a5003bc4
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/hystrixThreadPool.js
@@ -0,0 +1,346 @@
+
+(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-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html
new file mode 100644
index 00000000..1e653ccb
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPool.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
<%= currentActiveCount%>
+
+
+
<%= addCommas(rollingMaxActiveThreads)%>
+
+
+
+
+
<%= currentQueueSize %>
+
+
<%= addCommas(rollingCountThreadsExecuted)%>
+
+
+
+
<%= currentPoolSize %>
+
+
<%= propertyValue_queueSizeRejectionThreshold %>
+
+
\ No newline at end of file
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html
new file mode 100644
index 00000000..6af0ef2c
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html
@@ -0,0 +1,34 @@
+
+
+ <%
+ var displayName = name;
+ var toolTip = "";
+ if(displayName.length > 32) {
+ displayName = displayName.substring(0,4) + "..." + displayName.substring(displayName.length-20, displayName.length);
+ toolTip = "title=\"" + name + "\"";
+ }
+ %>
+
+
+
+
+
+
+
+
+
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/css/global.css b/spring-platform-netflix-hystrix/src/main/resources/static/css/global.css
new file mode 100644
index 00000000..46898b11
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/global.css
@@ -0,0 +1,71 @@
+@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-platform-netflix-hystrix/src/main/resources/static/css/resets.css b/spring-platform-netflix-hystrix/src/main/resources/static/css/resets.css
new file mode 100644
index 00000000..4d137c7e
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/resets.css
@@ -0,0 +1,102 @@
+/*
+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-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css
new file mode 100644
index 00000000..052ee488
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/1236_grid.css
@@ -0,0 +1,21 @@
+/* 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-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css
new file mode 100644
index 00000000..0ef2432c
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/720_grid.css
@@ -0,0 +1,33 @@
+/* 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-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css
new file mode 100644
index 00000000..83a59788
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/986_grid.css
@@ -0,0 +1,24 @@
+/* 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-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt
new file mode 100644
index 00000000..e942914a
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/LICENSE.txt
@@ -0,0 +1,19 @@
+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-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt
new file mode 100644
index 00000000..15cfc8c3
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/README.txt
@@ -0,0 +1 @@
+http://simplegrid.info/
\ No newline at end of file
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css
new file mode 100644
index 00000000..13cb4b2d
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/css/simplegrid/percentage_grid.css
@@ -0,0 +1,27 @@
+/* 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-platform-netflix-hystrix/src/main/resources/static/index.html b/spring-platform-netflix-hystrix/src/main/resources/static/index.html
new file mode 100644
index 00000000..dd098aee
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/index.html
@@ -0,0 +1,56 @@
+
+
+
+
+Hystrix Dashboard
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-platform-netflix-hystrix/src/main/resources/static/js/LICENSE b/spring-platform-netflix-hystrix/src/main/resources/static/js/LICENSE
new file mode 100644
index 00000000..cde4728a
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/js/LICENSE
@@ -0,0 +1,26 @@
+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-platform-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js b/spring-platform-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js
new file mode 100644
index 00000000..0b4ea58f
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/js/d3.v2.min.js
@@ -0,0 +1,4 @@
+(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-platform-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js b/spring-platform-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js
new file mode 100644
index 00000000..40d62eb5
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/js/jquery.tinysort.min.js
@@ -0,0 +1,12 @@
+/*
+* 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-platform-netflix-hystrix/src/main/resources/static/js/tmpl.js b/spring-platform-netflix-hystrix/src/main/resources/static/js/tmpl.js
new file mode 100644
index 00000000..d7098f78
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/js/tmpl.js
@@ -0,0 +1,43 @@
+
+//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-platform-netflix-hystrix/src/main/resources/static/monitor/monitor.css b/spring-platform-netflix-hystrix/src/main/resources/static/monitor/monitor.css
new file mode 100644
index 00000000..a38647f0
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/monitor/monitor.css
@@ -0,0 +1,101 @@
+.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-platform-netflix-hystrix/src/main/resources/static/monitor/monitor.html b/spring-platform-netflix-hystrix/src/main/resources/static/monitor/monitor.html
new file mode 100644
index 00000000..ec51e50e
--- /dev/null
+++ b/spring-platform-netflix-hystrix/src/main/resources/static/monitor/monitor.html
@@ -0,0 +1,194 @@
+
+
+
+
+ Hystrix Monitor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading ...
+
+
+
+
+
+
+
+
Loading ...
+
+
+
+
+
+
+
+
+
diff --git a/spring-platform-netflix-zuul/src/main/resources/application.yml b/spring-platform-netflix-zuul/src/main/resources/application.yml
index 6e880ac1..6d70b42c 100644
--- a/spring-platform-netflix-zuul/src/main/resources/application.yml
+++ b/spring-platform-netflix-zuul/src/main/resources/application.yml
@@ -40,8 +40,8 @@ eureka:
availabilityZones: default
serviceUrl:
- default: http://localhost:8080/v2/
- defaultZone: http://localhost:8080/v2/
+ default: http://localhost:8080/eureka/v2/
+ defaultZone: http://localhost:8080/eureka/v2/
instance:
#Virtual host name by which the clients identifies this service