diff --git a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.css b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.css index 1a2a6ac0e..c87ad1231 100644 --- a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.css +++ b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.css @@ -116,12 +116,15 @@ .dependencies .success { color: green; } + .dependencies .shortCircuited { color: blue; } + .dependencies .timeout { color: #FF9900; /* shade of orange */ } + .dependencies .failure { color: red; } @@ -134,6 +137,10 @@ color: brown; } +.dependencies .badRequest { + color: lightSeaGreen; +} + .dependencies div.monitor_data a.rate { color: black; font-size: 11pt; diff --git a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html index 1a3af48df..a8189b8eb 100644 --- a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html +++ b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html @@ -17,6 +17,7 @@
<%= addCommas(rollingCountSuccess) %> <%= addCommas(rollingCountShortCircuited) %> + <%= addCommas(rollingCountBadRequests) %>
diff --git a/hystrix-dashboard/src/main/webapp/monitor/monitor.css b/hystrix-dashboard/src/main/webapp/monitor/monitor.css index a38647f08..16abc6638 100644 --- a/hystrix-dashboard/src/main/webapp/monitor/monitor.css +++ b/hystrix-dashboard/src/main/webapp/monitor/monitor.css @@ -75,12 +75,15 @@ h3.sectionHeader { .success { color: green; } + .shortCircuited { color: blue; } + .timeout { color: #FF9900; /* shade of orange */ } + .failure { color: red; } @@ -93,6 +96,10 @@ h3.sectionHeader { color: brown; } +.badRequest { + color: lightSeaGreen; +} + @media screen and (max-width: 1100px) { .container { padding-left: 5px; diff --git a/hystrix-dashboard/src/main/webapp/monitor/monitor.html b/hystrix-dashboard/src/main/webapp/monitor/monitor.html index 15d0b3b3a..f399c53f0 100644 --- a/hystrix-dashboard/src/main/webapp/monitor/monitor.html +++ b/hystrix-dashboard/src/main/webapp/monitor/monitor.html @@ -52,7 +52,7 @@

99.5