In our HystrixCommand protected applications, we are observing a very intermittent and inconsistent behaviour with Hystrix Dashboard when running the applications on Cloud Foundry.

For our case, the dashboard is co-hosted with the application that has circuit breaker implemented.

The Hystrix Dashboard very frequently throws error saying Unable to connect to Command Metric Stream while collecting hystrix.stream data.

On debug "Read time-out" errors are logged in the application log.

There is no issue with running the app locally but this very un-affordable behaviour when running on CF, making it un-usable.

In our investigation and search, we have tried to find any option that can tell Hystrix Dashboard to wait for longer than default to receive the data but failed.

Is such configurable property available?

Comment From: ryanjbaxter

So the read time-out errors are coming from the hystrix dashboard app and not the app using the Hystrix Commands?

Comment From: ashwgupt

Yes, the app is not being used at the time the timeout is received. When the hystrix dashboard is refreshed the timeout appears in the logs.

Comment From: ryanjbaxter

Can you provide the complete stack trace for the errors?

Comment From: ashwgupt

Sure but pls allow me some time as am away from work at the moment. Shall revert back as soon back.

Comment From: ashwgupt

Hello.

Apologies for the delay in feedback.

I've done some more detailed debug iterations to understand the trend of behaviour for better feedback. Below is the summary:

  1. When the hystrix protected method still to be used by app after it's restart/redeploy - Timeouts are observed when the /hystrix endpoint is hit. Which looks like an expected behaviour so not a bug in my understand. (isn't it?) Below is the debug stack trace for it:

Results in Timeout

2017-01-31T11:49:12.71+0530 [APP/0]      OUT 2017-01-31 06:19:12.711 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/displayPigs]
2017-01-31T11:49:12.72+0530 [APP/0]      OUT 2017-01-31 06:19:12.722 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /displayPigs
2017-01-31T11:49:12.72+0530 [APP/0]      OUT 2017-01-31 06:19:12.722 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public org.springframework.web.servlet.ModelAndView com.fil.controller.PigController.displayAvailablePigs()]
2017-01-31T11:49:12.72+0530 [APP/0]      OUT 2017-01-31 06:19:12.723 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/displayPigs] is: -1
2017-01-31T11:49:12.73+0530 [APP/0]      OUT 2017-01-31 06:19:12.739 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.v.ContentNegotiatingViewResolver : Requested media types are [text/html, application/xhtml+xml, image/webp, application/xml;q=0.9, */*;q=0.8] based on Accept header types and producible media types [*/*])
2017-01-31T11:49:12.74+0530 [APP/0]      OUT 2017-01-31 06:19:12.740 DEBUG 11 --- [nio-8080-exec-5] o.s.w.servlet.view.BeanNameViewResolver  : No matching bean found for view name 'pigs'
2017-01-31T11:49:12.74+0530 [APP/0]      OUT 2017-01-31 06:19:12.746 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.view.freemarker.FreeMarkerView   : No FreeMarker view found for URL: pigs.ftl
2017-01-31T11:49:12.74+0530 [APP/0]      OUT 2017-01-31 06:19:12.746 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.v.ContentNegotiatingViewResolver : Returning [org.thymeleaf.spring4.view.ThymeleafView@6f8cd599] based on requested media type 'text/html'
2017-01-31T11:49:12.74+0530 [APP/0]      OUT 2017-01-31 06:19:12.746 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Rendering view [org.thymeleaf.spring4.view.ThymeleafView@6f8cd599] in DispatcherServlet with name 'dispatcherServlet'
2017-01-31T11:49:12.76+0530 [APP/0]      OUT 2017-01-31 06:19:12.767 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:49:12.76+0530 [RTR/1]      OUT message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com - [31/01/2017:06:19:12.703 +0000] "GET /displayPigs HTTP/1.1" 200 0 2308 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 172.16.255.2:44458 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:5de930a6-360e-42ba-7262-2eada049b9f8 response_time:0.064533928 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:49:18.78+0530 [APP/0]      OUT 2017-01-31 06:19:18.784 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/monitor]
2017-01-31T11:49:18.80+0530 [APP/0]      OUT 2017-01-31 06:19:18.804 DEBUG 11 --- [nio-8080-exec-7] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/monitor
2017-01-31T11:49:18.80+0530 [APP/0]      OUT 2017-01-31 06:19:18.807 DEBUG 11 --- [nio-8080-exec-7] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public java.lang.String org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardController.monitor(java.lang.String,org.springframework.ui.Model,org.springframework.web.context.request.WebRequest)]
2017-01-31T11:49:18.80+0530 [APP/0]      OUT 2017-01-31 06:19:18.808 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/monitor] is: -1
2017-01-31T11:49:18.81+0530 [APP/0]      OUT 2017-01-31 06:19:18.819 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.v.ContentNegotiatingViewResolver : Requested media types are [text/html, application/xhtml+xml, image/webp, application/xml;q=0.9, */*;q=0.8] based on Accept header types and producible media types [*/*])
2017-01-31T11:49:18.82+0530 [APP/0]      OUT 2017-01-31 06:19:18.819 DEBUG 11 --- [nio-8080-exec-7] o.s.w.servlet.view.BeanNameViewResolver  : No matching bean found for view name 'hystrix/monitor'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.945 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.v.ContentNegotiatingViewResolver : Returning [org.springframework.web.servlet.view.freemarker.FreeMarkerView: name 'hystrix/monitor'; URL [hystrix/monitor.ftl]] based on requested media type 'text/html'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.946 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Rendering view [org.springframework.web.servlet.view.freemarker.FreeMarkerView: name 'hystrix/monitor'; URL [hystrix/monitor.ftl]] in DispatcherServlet with name 'dispatcherServlet'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.946 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'path' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.946 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'basePath' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.946 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'contextPath' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.946 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'springMacroRequestContext' of type [org.springframework.web.servlet.support.RequestContext] to request in view with name 'hystrix/monitor'
2017-01-31T11:49:18.94+0530 [APP/0]      OUT 2017-01-31 06:19:18.949 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.view.freemarker.FreeMarkerView   : Rendering FreeMarker template [hystrix/monitor.ftl] in FreeMarkerView 'hystrix/monitor'
2017-01-31T11:49:19.11+0530 [APP/0]      OUT 2017-01-31 06:19:19.109 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:49:19.11+0530 [RTR/1]      OUT message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com - [31/01/2017:06:19:18.780 +0000] "GET /hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream HTTP/1.1" 200 0 7605 "https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 172.16.255.2:44736 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:93da5747-c1f1-4f0f-413c-260ee60a9c8a response_time:0.32964603 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:49:19.32+0530 [APP/0]      OUT 2017-01-31 06:19:19.328 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/global.css]
2017-01-31T11:49:19.33+0530 [APP/0]      OUT 2017-01-31 06:19:19.336 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/monitor.css]
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.340 DEBUG 11 --- [nio-8080-exec-9] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/monitor.css
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.343 DEBUG 11 --- [nio-8080-exec-9] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/monitor.css]
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.344 DEBUG 11 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/global.css
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.344 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/monitor.css] are [/**]
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.346 DEBUG 11 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/global.css]
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.346 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/global.css] are [/**]
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.347 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/global.css] are {}
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.347 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/monitor.css] are {}
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.348 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/global.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.348 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/monitor.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.348 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/global.css] is: -1
2017-01-31T11:49:19.34+0530 [APP/0]      OUT 2017-01-31 06:19:19.348 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/monitor.css] is: -1
2017-01-31T11:49:19.35+0530 [RTR/0]      OUT message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com - [31/01/2017:06:19:19.319 +0000] "GET /hystrix/css/monitor.css HTTP/1.1" 200 0 1467 "https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 172.16.255.2:46619 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:f810279f-8b86-4b26-70a3-bb802099248b response_time:0.039783273 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:49:19.35+0530 [APP/0]      OUT 2017-01-31 06:19:19.359 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:49:19.35+0530 [APP/0]      OUT 2017-01-31 06:19:19.359 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:49:19.35+0530 [APP/0]      OUT 2017-01-31 06:19:19.359 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:49:19.35+0530 [RTR/1]      OUT message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com - [31/01/2017:06:19:19.318 +0000] "GET /hystrix/css/global.css HTTP/1.1" 200 0 1405 "https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 172.16.255.2:44772 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:c72758be-9dd8-475c-4091-7b801b44e81e response_time:0.040920212 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:49:19.35+0530 [APP/0]      OUT 2017-01-31 06:19:19.359 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:49:19.61+0530 [APP/0]      OUT 2017-01-31 06:19:19.615  INFO 11 --- [nio-8080-exec-1] ashboardConfiguration$ProxyStreamServlet :
2017-01-31T11:49:19.61+0530 [APP/0]      OUT Proxy opening connection to: https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix.stream
2017-01-31T11:49:19.61+0530 [APP/0]      OUT 2017-01-31 06:19:19.615  INFO 11 --- [io-8080-exec-10] ashboardConfiguration$ProxyStreamServlet :
2017-01-31T11:49:19.61+0530 [APP/0]      OUT Proxy opening connection to: https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix.stream
2017-01-31T11:49:20.10+0530 [APP/0]      OUT 2017-01-31 06:19:20.109 DEBUG 11 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix.stream]
2017-01-31T11:49:20.11+0530 [APP/0]      OUT 2017-01-31 06:19:20.109 DEBUG 11 --- [nio-8080-exec-2] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix.stream]
2017-01-31T11:49:20.11+0530 [APP/0]      OUT 2017-01-31 06:19:20.110 DEBUG 11 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix.stream] is: -1
2017-01-31T11:49:20.11+0530 [APP/0]      OUT 2017-01-31 06:19:20.111 DEBUG 11 --- [nio-8080-exec-2] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix.stream] is: -1
2017-01-31T11:49:30.07+0530 [APP/0]      OUT 2017-01-31 06:19:30.073 ERROR 11 --- [nio-8080-exec-1] ashboardConfiguration$ProxyStreamServlet : Error proxying request: https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix.stream
2017-01-31T11:49:30.07+0530 [APP/0]      OUT java.net.SocketTimeoutException: Read timed out
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.socketRead0(Native Method) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.read(SocketInputStream.java:171) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.read(SocketInputStream.java:141) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.InputRecord.readFully(InputRecord.java:465) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.InputRecord.read(InputRecord.java:503) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:930) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.SocketInputBuffer.fillBuffer(SocketInputBuffer.java:82) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.AppInputStream.read(AppInputStream.java:105) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:158) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.AbstractSessionInputBuffer.readLine(AbstractSessionInputBuffer.java:271) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:140) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:57) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:259) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.AbstractHttpClientConnection.receiveResponseHeader(AbstractHttpClientConnection.java:281) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.DefaultClientConnection.receiveResponseHeader(DefaultClientConnection.java:259) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.ManagedClientConnectionImpl.receiveResponseHeader(ManagedClientConnectionImpl.java:209) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:273) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:125) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:686) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:488) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:884) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:107) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:55) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardConfiguration$ProxyStreamServlet.doGet(HystrixDashboardConfiguration.java:171) ~[spring-cloud-netflix-hystrix-dashboard-1.2.3.RELEASE.jar!/:1.2.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at javax.servlet.http.HttpServlet.service(HttpServlet.java:622) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55) [spring-boot-1.4.1.RELEASE.jar!/:1.4.1.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:105) [spring-boot-actuator-1.4.1.RELEASE.jar!/:1.4.1.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) [tomcat-embed-websocket-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:89) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.lang.Thread.run(Thread.java:745) [na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [RTR/0]      OUT message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com - [31/01/2017:06:19:19.591 +0000] "GET /proxy.stream?origin=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream HTTP/1.1" 200 0 0 "https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 172.16.255.2:46643 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:4fadc966-52ec-42ca-44d4-6500302d7785 response_time:10.486818233 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:49:30.07+0530 [APP/0]      OUT java.net.SocketTimeoutException: Read timed out
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.socketRead0(Native Method) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:107) [spring-boot-actuator-1.4.1.RELEASE.jar!/:1.4.1.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:677) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT 2017-01-31 06:19:30.076 ERROR 11 --- [io-8080-exec-10] ashboardConfiguration$ProxyStreamServlet : Error proxying request: https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix.stream
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.read(SocketInputStream.java:171) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.net.SocketInputStream.read(SocketInputStream.java:141) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.InputRecord.readFully(InputRecord.java:465) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.InputRecord.read(InputRecord.java:503) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:930) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at sun.security.ssl.AppInputStream.read(AppInputStream.java:105) ~[na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:158) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.SocketInputBuffer.fillBuffer(SocketInputBuffer.java:82) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.AbstractSessionInputBuffer.readLine(AbstractSessionInputBuffer.java:271) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:140) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:57) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:259) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.AbstractHttpClientConnection.receiveResponseHeader(AbstractHttpClientConnection.java:281) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.DefaultClientConnection.receiveResponseHeader(DefaultClientConnection.java:259) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.conn.ManagedClientConnectionImpl.receiveResponseHeader(ManagedClientConnectionImpl.java:209) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:273) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:125) ~[httpcore-4.4.5.jar!/:4.4.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:686) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:488) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:884) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:107) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardConfiguration$ProxyStreamServlet.doGet(HystrixDashboardConfiguration.java:171) ~[spring-cloud-netflix-hystrix-dashboard-1.2.3.RELEASE.jar!/:1.2.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:107) [spring-boot-actuator-1.4.1.RELEASE.jar!/:1.4.1.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) [tomcat-embed-websocket-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:55) ~[httpclient-4.5.2.jar!/:4.5.2]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at javax.servlet.http.HttpServlet.service(HttpServlet.java:622) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55) [spring-boot-1.4.1.RELEASE.jar!/:1.4.1.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:105) [spring-boot-actuator-1.4.1.RELEASE.jar!/:1.4.1.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:89) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.3.RELEASE.jar!/:4.3.3.RELEASE]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:677) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_121]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-8.5.5.jar!/:8.5.5]
2017-01-31T11:49:30.07+0530 [APP/0]      OUT    at java.lang.Thread.run(Thread.java:745) [na:1.8.0_121]
2017-01-31T11:49:30.08+0530 [RTR/1]      OUT message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com - [31/01/2017:06:19:19.590 +0000] "GET /proxy.stream?origin=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream HTTP/1.1" 200 0 0 "https://message-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paasnpoa.bip.uk.fid-intl.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 172.16.255.2:44796 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:4adb41c2-16d9-4b63-709a-b3bcdbcb0aa6 response_time:10.491624427 app_id:be1a1723-44ce-440e-9638-3427747b9201
  1. Followed by the previous step and with the hystrix protected method been used at least ones - When the /hystrix endpoint is hit or refreshed, the dashboard shows up okay, with circuit breaker stats on console. Below are the debug logs for the same:

Results in a success

2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.298 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/monitor]
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.300 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/monitor
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.300 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public java.lang.String org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardController.monitor(java.lang.String,org.springframework.ui.Model,org.springframework.web.context.request.WebRequest)]
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.300 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/monitor] is: -1
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.302 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.v.ContentNegotiatingViewResolver : Requested media types are [text/html, application/xhtml+xml, image/webp, application/xml;q=0.9, */*;q=0.8] based on Accept header types and producible media types [*/*])
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.302 DEBUG 11 --- [nio-8080-exec-5] o.s.w.servlet.view.BeanNameViewResolver  : No matching bean found for view name 'hystrix/monitor'
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.307 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.v.ContentNegotiatingViewResolver : Returning [org.springframework.web.servlet.view.freemarker.FreeMarkerView: name 'hystrix/monitor'; URL [hystrix/monitor.ftl]] based on requested media type 'text/html'
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.308 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Rendering view [org.springframework.web.servlet.view.freemarker.FreeMarkerView: name 'hystrix/monitor'; URL [hystrix/monitor.ftl]] in DispatcherServlet with name 'dispatcherServlet'
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.309 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'path' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.309 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'basePath' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:50:58.30+0530 [APP/0]      OUT 2017-01-31 06:20:58.309 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'contextPath' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:50:58.31+0530 [APP/0]      OUT 2017-01-31 06:20:58.310 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'springMacroRequestContext' of type [org.springframework.web.servlet.support.RequestContext] to request in view with name 'hystrix/monitor'
2017-01-31T11:50:58.31+0530 [APP/0]      OUT 2017-01-31 06:20:58.310 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.view.freemarker.FreeMarkerView   : Rendering FreeMarker template [hystrix/monitor.ftl] in FreeMarkerView 'hystrix/monitor'
2017-01-31T11:50:58.31+0530 [APP/0]      OUT 2017-01-31 06:20:58.312 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:58.31+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.296 +0000] "GET /hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream HTTP/1.1" 200 0 7605 "https://message-data-client-hystrix.paas.abc.com/hystrix" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49206 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:1a0ec857-4073-4933-62c6-c1c551831ac6 response_time:0.017305947 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.525 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/global.css]
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.528 DEBUG 11 --- [nio-8080-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/global.css
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.528 DEBUG 11 --- [nio-8080-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/global.css]
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.528 DEBUG 11 --- [nio-8080-exec-6] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/global.css] are [/**]
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.528 DEBUG 11 --- [nio-8080-exec-6] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/global.css] are {}
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.529 DEBUG 11 --- [nio-8080-exec-6] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/global.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:58.52+0530 [APP/0]      OUT 2017-01-31 06:20:58.529 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/global.css] is: -1
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.531 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.531 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:58.53+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.522 +0000] "GET /hystrix/css/global.css HTTP/1.1" 200 0 1405 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51057 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:d148f386-55a9-46dc-603b-a8e9341c5bf7 response_time:0.010084474 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.532 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/webjars/d3js/3.4.11/d3.min.js]
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.534 DEBUG 11 --- [nio-8080-exec-7] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /webjars/d3js/3.4.11/d3.min.js
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.535 DEBUG 11 --- [nio-8080-exec-7] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/webjars/d3js/3.4.11/d3.min.js]
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.535 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/webjars/d3js/3.4.11/d3.min.js] are [/webjars/**, /**]
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.535 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/webjars/d3js/3.4.11/d3.min.js] are {}
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.536 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/webjars/d3js/3.4.11/d3.min.js] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[class path resource [META-INF/resources/webjars/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@c27d163]]] and 1 interceptor
2017-01-31T11:50:58.53+0530 [APP/0]      OUT 2017-01-31 06:20:58.536 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/webjars/d3js/3.4.11/d3.min.js] is: -1
2017-01-31T11:50:58.54+0530 [APP/0]      OUT 2017-01-31 06:20:58.542 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:58.54+0530 [APP/0]      OUT 2017-01-31 06:20:58.542 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:58.54+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.526 +0000] "GET /webjars/d3js/3.4.11/d3.min.js HTTP/1.1" 200 0 146751 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51059 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:dd4cbbdb-9af3-46be-43fa-174c64573c18 response_time:0.016358308 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.640 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/hystrixCommand.css]
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.643 DEBUG 11 --- [nio-8080-exec-9] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/hystrixCommand.css
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.643 DEBUG 11 --- [nio-8080-exec-9] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/hystrixCommand.css]
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.644 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/hystrixCommand.css] are [/**]
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.644 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/hystrixCommand.css] are {}
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.644 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/hystrixCommand.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.644 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/hystrixCommand.css] is: -1
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.647 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:58.64+0530 [APP/0]      OUT 2017-01-31 06:20:58.647 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:58.64+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.638 +0000] "GET /hystrix/components/hystrixCommand/hystrixCommand.css HTTP/1.1" 200 0 2976 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49218 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:d7b85a0b-ee7e-4745-4d44-a6017f98e24c response_time:0.010582548 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.696 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css]
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.698 DEBUG 11 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/hystrixThreadPool.css
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.698 DEBUG 11 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css]
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.698 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] are [/**]
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.698 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] are {}
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.699 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:58.69+0530 [APP/0]      OUT 2017-01-31 06:20:58.699 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] is: -1
2017-01-31T11:50:58.70+0530 [APP/0]      OUT 2017-01-31 06:20:58.701 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:58.70+0530 [APP/0]      OUT 2017-01-31 06:20:58.701 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:58.70+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.695 +0000] "GET /hystrix/components/hystrixThreadPool/hystrixThreadPool.css HTTP/1.1" 200 0 2400 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49222 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:2f2d55df-e266-499b-4167-31d010175b4e response_time:0.007119429 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.814 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/resets.css]
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.816 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/resets.css
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.816 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/resets.css]
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.816 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/resets.css] are [/**]
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.817 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/resets.css] are {}
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.817 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/resets.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:58.81+0530 [APP/0]      OUT 2017-01-31 06:20:58.817 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/resets.css] is: -1
2017-01-31T11:50:59.00+0530 [APP/0]      OUT 2017-01-31 06:20:59.006 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.00+0530 [APP/0]      OUT 2017-01-31 06:20:59.006 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.00+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.813 +0000] "GET /hystrix/css/resets.css HTTP/1.1" 200 0 1772 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49228 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:7ab41827-6d38-4dd5-75d0-7a840022c2ca response_time:0.193527 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:59.00+0530 [APP/0]      OUT 2017-01-31 06:20:59.008 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/monitor.css]
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.010 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/monitor.css
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.010 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/monitor.css]
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.010 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/monitor.css] are [/**]
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.010 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/monitor.css] are {}
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.011 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/monitor.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.011 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/monitor.css] is: -1
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.014 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.01+0530 [APP/0]      OUT 2017-01-31 06:20:59.014 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.01+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:58.865 +0000] "GET /hystrix/css/monitor.css HTTP/1.1" 200 0 1467 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51081 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:5e14cee6-1f95-4fcc-6ddc-711230056f02 response_time:0.149315153 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:59.14+0530 [APP/0]      OUT 2017-01-31 06:20:59.146 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/js/tmpl.js]
2017-01-31T11:50:59.14+0530 [APP/0]      OUT 2017-01-31 06:20:59.149 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/js/tmpl.js
2017-01-31T11:50:59.14+0530 [APP/0]      OUT 2017-01-31 06:20:59.149 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/js/tmpl.js]
2017-01-31T11:50:59.14+0530 [APP/0]      OUT 2017-01-31 06:20:59.149 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/js/tmpl.js] are [/**]
2017-01-31T11:50:59.14+0530 [APP/0]      OUT 2017-01-31 06:20:59.149 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/js/tmpl.js] are {}
2017-01-31T11:50:59.15+0530 [APP/0]      OUT 2017-01-31 06:20:59.149 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/js/tmpl.js] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:59.15+0530 [APP/0]      OUT 2017-01-31 06:20:59.150 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/js/tmpl.js] is: -1
2017-01-31T11:50:59.15+0530 [APP/0]      OUT 2017-01-31 06:20:59.152 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.15+0530 [APP/0]      OUT 2017-01-31 06:20:59.153 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.15+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:59.144 +0000] "GET /hystrix/js/tmpl.js HTTP/1.1" 200 0 1428 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49255 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:18682c1a-d7eb-4f02-5487-36de13f1f588 response_time:0.008763554 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.172 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/hystrixCommand.js]
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.173 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/hystrixCommand.js
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.173 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/hystrixCommand.js]
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.173 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/hystrixCommand.js] are [/**]
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.174 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/hystrixCommand.js] are {}
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.174 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/hystrixCommand.js] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.174 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/hystrixCommand.js] is: -1
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.177 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.177 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.17+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:59.170 +0000] "GET /hystrix/components/hystrixCommand/hystrixCommand.js HTTP/1.1" 200 0 19853 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51102 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:2ba20ec4-fa4b-44d3-5697-7def203753b5 response_time:0.007389022 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:59.17+0530 [APP/0]      OUT 2017-01-31 06:20:59.179 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.js]
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.180 DEBUG 11 --- [nio-8080-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/hystrixThreadPool.js
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.180 DEBUG 11 --- [nio-8080-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.js]
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.181 DEBUG 11 --- [nio-8080-exec-6] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/hystrixThreadPool.js] are [/**]
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.181 DEBUG 11 --- [nio-8080-exec-6] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/hystrixThreadPool.js] are {}
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.181 DEBUG 11 --- [nio-8080-exec-6] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/hystrixThreadPool.js] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.181 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.js] is: -1
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.183 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.18+0530 [APP/0]      OUT 2017-01-31 06:20:59.183 DEBUG 11 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.18+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:59.178 +0000] "GET /hystrix/components/hystrixThreadPool/hystrixThreadPool.js HTTP/1.1" 200 0 12035 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49257 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:7b3d0a8e-7b16-48ed-413d-b62716264e53 response_time:0.005930741 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.315 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/webjars/jquery/2.1.1/jquery.min.js]
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.316 DEBUG 11 --- [nio-8080-exec-7] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /webjars/jquery/2.1.1/jquery.min.js
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.317 DEBUG 11 --- [nio-8080-exec-7] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/webjars/jquery/2.1.1/jquery.min.js]
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.317 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/webjars/jquery/2.1.1/jquery.min.js] are [/webjars/**, /**]
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.317 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/webjars/jquery/2.1.1/jquery.min.js] are {}
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.317 DEBUG 11 --- [nio-8080-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/webjars/jquery/2.1.1/jquery.min.js] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[class path resource [META-INF/resources/webjars/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@c27d163]]] and 1 interceptor
2017-01-31T11:50:59.31+0530 [APP/0]      OUT 2017-01-31 06:20:59.318 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/webjars/jquery/2.1.1/jquery.min.js] is: -1
2017-01-31T11:50:59.32+0530 [APP/0]      OUT 2017-01-31 06:20:59.321 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.32+0530 [APP/0]      OUT 2017-01-31 06:20:59.321 DEBUG 11 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.32+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:59.313 +0000] "GET /webjars/jquery/2.1.1/jquery.min.js HTTP/1.1" 200 0 84280 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49265 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:70cd4404-04c1-4e08-6200-c0c894775054 response_time:0.008583852 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.613 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/js/jquery.tinysort.min.js]
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.616 DEBUG 11 --- [nio-8080-exec-9] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/js/jquery.tinysort.min.js
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.616 DEBUG 11 --- [nio-8080-exec-9] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/js/jquery.tinysort.min.js]
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.616 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/js/jquery.tinysort.min.js] are [/**]
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.617 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/js/jquery.tinysort.min.js] are {}
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.617 DEBUG 11 --- [nio-8080-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/js/jquery.tinysort.min.js] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:50:59.61+0530 [APP/0]      OUT 2017-01-31 06:20:59.617 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/js/jquery.tinysort.min.js] is: -1
2017-01-31T11:50:59.62+0530 [APP/0]      OUT 2017-01-31 06:20:59.620 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:50:59.62+0530 [APP/0]      OUT 2017-01-31 06:20:59.620 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:50:59.62+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:20:59.611 +0000] "GET /hystrix/js/jquery.tinysort.min.js HTTP/1.1" 200 0 1877 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49281 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:af73c371-af6a-4cbb-6c14-4e00d6b86262 response_time:0.009926172 app_id:be1a1723-44ce-440e-9638-3427747b9201
  1. Followed by the previous step with the hystrix protected method been used at least ones and dashboard showing up okay - When the /hystrix endpoint is manually refreshed on browser, the behaviour for displaying the dashboard becomes inconsistent and unaffordable. In most cases an error of Unable to connect to Command Metric Stream is thrown on the console with HTTP 503 showing up in the logs. Whereas a few times the dashboard shows up okay, with circuit breaker stats on console. There is no clear reason for it. Below are the debug logs for case when 503 is returned:

Results in a 503

2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.276 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html]
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.278 DEBUG 11 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/templates/hystrixCircuit.html
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.278 DEBUG 11 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html]
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.278 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] are [/**]
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.278 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] are {}
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.278 DEBUG 11 --- [nio-8080-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.278 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] is: -1
2017-01-31T11:51:00.27+0530 [APP/0]      OUT 2017-01-31 06:21:00.279 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html]
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.280 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.281 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html]
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.281 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] are [/**]
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.281 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] are {}
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.281 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.281 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] is: -1
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.282 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.282 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:00.28+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:00.274 +0000] "GET /hystrix/components/hystrixCommand/templates/hystrixCircuit.html HTTP/1.1" 200 0 3936 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51152 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:9c63bd35-5d8e-4882-424e-d7296fa244b9 response_time:0.00853683 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.285 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:00.28+0530 [APP/0]      OUT 2017-01-31 06:21:00.285 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:00.28+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:00.274 +0000] "GET /hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html HTTP/1.1" 200 0 1391 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49305 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:5c80b3bf-5ed3-4341-6184-b0e8da4f8c5f response_time:0.01142646 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.315 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html]
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.316 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.317 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html]
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.318 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.318 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html]
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.318 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] are [/**]
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.319 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] are {}
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.319 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.319 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] is: -1
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.319 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html]
2017-01-31T11:51:00.31+0530 [APP/0]      OUT 2017-01-31 06:21:00.319 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] are [/**]
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.319 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] are {}
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.320 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.320 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] is: -1
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.323 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/images/hystrix-logo-tagline-tiny.png]
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.324 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/images/hystrix-logo-tagline-tiny.png
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.324 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/images/hystrix-logo-tagline-tiny.png]
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.324 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/images/hystrix-logo-tagline-tiny.png] are [/**]
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.325 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/images/hystrix-logo-tagline-tiny.png] are {}
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.325 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/images/hystrix-logo-tagline-tiny.png] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.325 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/images/hystrix-logo-tagline-tiny.png] is: -1
2017-01-31T11:51:00.32+0530 [APP/0]      OUT 2017-01-31 06:21:00.327 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:00.32+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:00.322 +0000] "GET /hystrix/images/hystrix-logo-tagline-tiny.png HTTP/1.1" 200 0 13315 "https://message-data-client-hystrix.paas.abc.com/hystrix/css/global.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49309 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:b44ebc85-65e2-41ef-731d-44a8f82d4076 response_time:0.006348868 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:00.33+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:00.313 +0000] "GET /hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html HTTP/1.1" 200 0 2159 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:49307 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:19e41363-329e-4612-43b3-a710230529d6 response_time:0.017235124 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:00.33+0530 [APP/0]      OUT 2017-01-31 06:21:00.329 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:00.33+0530 [APP/0]      OUT 2017-01-31 06:21:00.330 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:00.33+0530 [APP/0]      OUT 2017-01-31 06:21:00.332 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:00.33+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:00.315 +0000] "GET /hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html HTTP/1.1" 200 0 1511 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51154 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:0c3e5e61-f997-4660-76c8-6e11dc8c816c response_time:0.015806702 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:00.33+0530 [APP/0]      OUT 2017-01-31 06:21:00.331 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:00.33+0530 [APP/0]      OUT 2017-01-31 06:21:00.332 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:00.98+0530 [APP/0]      OUT 2017-01-31 06:21:00.981  INFO 11 --- [nio-8080-exec-6] ashboardConfiguration$ProxyStreamServlet :
2017-01-31T11:51:00.98+0530 [APP/0]      OUT Proxy opening connection to: https://message-data-client-hystrix.paas.abc.com/hystrix.stream
2017-01-31T11:51:00.98+0530 [APP/0]      OUT 2017-01-31 06:21:00.981  INFO 11 --- [nio-8080-exec-7] ashboardConfiguration$ProxyStreamServlet :
2017-01-31T11:51:00.98+0530 [APP/0]      OUT Proxy opening connection to: https://message-data-client-hystrix.paas.abc.com/hystrix.stream
2017-01-31T11:51:01.10+0530 [APP/0]      OUT 2017-01-31 06:21:01.108 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix.stream]
2017-01-31T11:51:01.11+0530 [APP/0]      OUT 2017-01-31 06:21:01.109 DEBUG 11 --- [nio-8080-exec-9] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix.stream] is: -1
2017-01-31T11:51:01.11+0530 [APP/0]      OUT 2017-01-31 06:21:01.110 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix.stream]
2017-01-31T11:51:01.11+0530 [APP/0]      OUT 2017-01-31 06:21:01.111 DEBUG 11 --- [nio-8080-exec-8] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix.stream] is: -1
2017-01-31T11:51:20.45+0530 [APP/0]      OUT 2017-01-31 06:21:20.459 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/monitor]
2017-01-31T11:51:20.46+0530 [APP/0]      OUT 2017-01-31 06:21:20.461 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/monitor
2017-01-31T11:51:20.46+0530 [APP/0]      OUT 2017-01-31 06:21:20.462 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public java.lang.String org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardController.monitor(java.lang.String,org.springframework.ui.Model,org.springframework.web.context.request.WebRequest)]
2017-01-31T11:51:20.46+0530 [APP/0]      OUT 2017-01-31 06:21:20.462 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/monitor] is: -1
2017-01-31T11:51:20.46+0530 [APP/0]      OUT 2017-01-31 06:21:20.464 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.v.ContentNegotiatingViewResolver : Requested media types are [text/html, application/xhtml+xml, image/webp, application/xml;q=0.9, */*;q=0.8] based on Accept header types and producible media types [*/*])
2017-01-31T11:51:20.46+0530 [APP/0]      OUT 2017-01-31 06:21:20.464 DEBUG 11 --- [nio-8080-exec-4] o.s.w.servlet.view.BeanNameViewResolver  : No matching bean found for view name 'hystrix/monitor'
2017-01-31T11:51:20.46+0530 [APP/0]      OUT 2017-01-31 06:21:20.464 DEBUG 11 --- [nio-8080-exec-4] o.s.w.servlet.view.BeanNameViewResolver  : No matching bean found for view name 'hystrix/monitor.html'
2017-01-31T11:51:20.47+0530 [APP/0]      OUT 2017-01-31 06:21:20.476 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.view.freemarker.FreeMarkerView   : No FreeMarker view found for URL: hystrix/monitor.html.ftl
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.481 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.v.ContentNegotiatingViewResolver : Returning [org.springframework.web.servlet.view.freemarker.FreeMarkerView: name 'hystrix/monitor'; URL [hystrix/monitor.ftl]] based on requested media type 'text/html'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.482 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Rendering view [org.springframework.web.servlet.view.freemarker.FreeMarkerView: name 'hystrix/monitor'; URL [hystrix/monitor.ftl]] in DispatcherServlet with name 'dispatcherServlet'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.482 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'path' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.482 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'basePath' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.482 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'contextPath' of type [java.lang.String] to request in view with name 'hystrix/monitor'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.482 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.view.freemarker.FreeMarkerView   : Added model object 'springMacroRequestContext' of type [org.springframework.web.servlet.support.RequestContext] to request in view with name 'hystrix/monitor'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.482 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.view.freemarker.FreeMarkerView   : Rendering FreeMarker template [hystrix/monitor.ftl] in FreeMarkerView 'hystrix/monitor'
2017-01-31T11:51:20.48+0530 [APP/0]      OUT 2017-01-31 06:21:20.485 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.48+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.457 +0000] "GET /hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream HTTP/1.1" 200 0 7605 "https://message-data-client-hystrix.paas.abc.com/hystrix" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51842 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:331c30f9-5bda-4c1f-6040-ad806bdf0706 response_time:0.028922482 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.697 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/monitor.css]
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.697 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/css/global.css]
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.698 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/monitor.css
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.699 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/monitor.css]
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.699 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/monitor.css] are [/**]
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.699 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/monitor.css] are {}
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.699 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/monitor.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:20.69+0530 [APP/0]      OUT 2017-01-31 06:21:20.699 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/monitor.css] is: -1
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.700 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/css/global.css
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.700 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/css/global.css]
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.700 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/css/global.css] are [/**]
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.700 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/css/global.css] are {}
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.700 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/css/global.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.700 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/css/global.css] is: -1
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.702 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.702 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.70+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.695 +0000] "GET /hystrix/css/monitor.css HTTP/1.1" 200 0 1467 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:50003 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:f8d7bd68-337a-48ac-696d-dc14e7a3a97e response_time:0.007485926 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.703 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:20.70+0530 [APP/0]      OUT 2017-01-31 06:21:20.703 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.70+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.696 +0000] "GET /hystrix/css/global.css HTTP/1.1" 200 0 1405 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51850 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:66ee93cb-a811-4fe8-50fb-d0048adaf292 response_time:0.00838692 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.811 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/hystrixCommand.css]
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.812 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/hystrixCommand.css
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.813 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/hystrixCommand.css]
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.813 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/hystrixCommand.css] are [/**]
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.813 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/hystrixCommand.css] are {}
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.813 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/hystrixCommand.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.813 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/hystrixCommand.css] is: -1
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.816 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:20.81+0530 [APP/0]      OUT 2017-01-31 06:21:20.816 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.81+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.809 +0000] "GET /hystrix/components/hystrixCommand/hystrixCommand.css HTTP/1.1" 200 0 2976 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51854 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:d8ecd05a-d374-47d4-60c7-4f7dcfc5952c response_time:0.007390387 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.860 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css]
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.861 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/hystrixThreadPool.css
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.862 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css]
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.862 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] are [/**]
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.862 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] are {}
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.862 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.862 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/hystrixThreadPool.css] is: -1
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.864 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:20.86+0530 [APP/0]      OUT 2017-01-31 06:21:20.864 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.86+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.859 +0000] "GET /hystrix/components/hystrixThreadPool/hystrixThreadPool.css HTTP/1.1" 200 0 2400 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:50009 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:7280d4b3-7b37-4055-58ab-b338fbf64af0 response_time:0.006032486 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.915 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html]
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.916 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/templates/hystrixCircuit.html
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.917 DEBUG 11 --- [nio-8080-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html]
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.917 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] are [/**]
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.917 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] are {}
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.917 DEBUG 11 --- [nio-8080-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:20.91+0530 [APP/0]      OUT 2017-01-31 06:21:20.917 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/templates/hystrixCircuit.html] is: -1
2017-01-31T11:51:20.92+0530 [APP/0]      OUT 2017-01-31 06:21:20.919 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:20.92+0530 [APP/0]      OUT 2017-01-31 06:21:20.919 DEBUG 11 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.92+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.914 +0000] "GET /hystrix/components/hystrixCommand/templates/hystrixCircuit.html HTTP/1.1" 200 0 3936 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51858 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:cbea32b0-e13e-4519-46d6-cf67ed544294 response_time:0.006268848 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.983 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html]
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.984 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.985 DEBUG 11 --- [io-8080-exec-10] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html]
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.985 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] are [/**]
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.985 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] are {}
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.985 DEBUG 11 --- [io-8080-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.986 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html] is: -1
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.988 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:20.98+0530 [APP/0]      OUT 2017-01-31 06:21:20.988 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:20.98+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:20.981 +0000] "GET /hystrix/components/hystrixCommand/templates/hystrixCircuitContainer.html HTTP/1.1" 200 0 2159 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:50017 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:bd8f9d8a-5c4d-4b61-4928-4ee14f19cbf5 response_time:0.007735996 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.022 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html]
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.024 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.024 DEBUG 11 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html]
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.024 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] are [/**]
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.024 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] are {}
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.024 DEBUG 11 --- [nio-8080-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.024 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html] is: -1
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.027 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:21.02+0530 [APP/0]      OUT 2017-01-31 06:21:21.027 DEBUG 11 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:21.02+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:21.020 +0000] "GET /hystrix/components/hystrixThreadPool/templates/hystrixThreadPool.html HTTP/1.1" 200 0 1391 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51864 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:65ddbc69-ffa5-4b0b-5e6f-a20b93496370 response_time:0.007780026 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.157 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html]
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.158 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.159 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] are [/**]
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.159 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@57c88764]]] and 1 interceptor
2017-01-31T11:51:21.16+0530 [APP/0]      OUT 2017-01-31 06:21:21.162 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.159 DEBUG 11 --- [nio-8080-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html]
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.159 DEBUG 11 --- [nio-8080-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] are {}
2017-01-31T11:51:21.15+0530 [APP/0]      OUT 2017-01-31 06:21:21.159 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html] is: -1
2017-01-31T11:51:21.16+0530 [APP/0]      OUT 2017-01-31 06:21:21.161 DEBUG 11 --- [nio-8080-exec-4] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:21.16+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:21.155 +0000] "GET /hystrix/components/hystrixThreadPool/templates/hystrixThreadPoolContainer.html HTTP/1.1" 200 0 1511 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:50021 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:bfc4d12c-8750-4694-6577-cfa228903c06 response_time:0.007451277 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:21.18+0530 [APP/0]      OUT 2017-01-31 06:21:21.184  INFO 11 --- [nio-8080-exec-5] ashboardConfiguration$ProxyStreamServlet :
2017-01-31T11:51:21.18+0530 [APP/0]      OUT Proxy opening connection to: https://message-data-client-hystrix.paas.abc.com/hystrix.stream
2017-01-31T11:51:21.19+0530 [APP/0]      OUT 2017-01-31 06:21:21.192 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix.stream]
2017-01-31T11:51:21.19+0530 [APP/0]      OUT 2017-01-31 06:21:21.193 DEBUG 11 --- [io-8080-exec-10] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix.stream] is: -1
2017-01-31T11:51:21.24+0530 [APP/0]      OUT 2017-01-31 06:21:21.247  INFO 11 --- [nio-8080-exec-1] ashboardConfiguration$ProxyStreamServlet :
2017-01-31T11:51:21.24+0530 [APP/0]      OUT Proxy opening connection to: https://message-data-client-hystrix.paas.abc.com/hystrix.stream
2017-01-31T11:51:21.29+0530 [APP/0]      OUT 2017-01-31 06:21:21.299 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/hystrix.stream]
2017-01-31T11:51:21.30+0530 [APP/0]      OUT 2017-01-31 06:21:21.300 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/hystrix.stream] is: -1
2017-01-31T11:51:21.30+0530 [APP/0]      OUT 2017-01-31 06:21:21.301 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:21.30+0530 [APP/0]      OUT 2017-01-31 06:21:21.301 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:21.30+0530 [APP/0]      OUT 2017-01-31 06:21:21.308 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/error]
2017-01-31T11:51:21.31+0530 [APP/0]      OUT 2017-01-31 06:21:21.312 DEBUG 11 --- [io-8080-exec-11] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /error
2017-01-31T11:51:21.31+0530 [APP/0]      OUT 2017-01-31 06:21:21.314 DEBUG 11 --- [io-8080-exec-11] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)]
2017-01-31T11:51:21.31+0530 [APP/0]      OUT 2017-01-31 06:21:21.314 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/error] is: -1
2017-01-31T11:51:21.34+0530 [APP/0]      OUT 2017-01-31 06:21:21.348 DEBUG 11 --- [io-8080-exec-11] o.s.w.s.m.m.a.HttpEntityMethodProcessor  : Written [{timestamp=Tue Jan 31 06:21:21 UTC 2017, status=503, error=Service Unavailable, message=MaxConcurrentConnections reached: 5, path=/hystrix.stream}] as "application/json" using [org.springframework.http.converter.json.MappingJackson2HttpMessageConverter@165b8a71]
2017-01-31T11:51:21.34+0530 [APP/0]      OUT 2017-01-31 06:21:21.349 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2017-01-31T11:51:21.35+0530 [APP/0]      OUT 2017-01-31 06:21:21.351 DEBUG 11 --- [io-8080-exec-11] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2017-01-31T11:51:21.35+0530 [RTR/1]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:21.296 +0000] "GET /hystrix.stream HTTP/1.1" 503 0 143 "-" "Apache-HttpClient/4.5.2 (Java/1.8.0_121)" 16.16.16.16:50029 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:5bdaf6d1-a7de-4e60-7a06-f69f9a2d22aa response_time:0.055846848 app_id:be1a1723-44ce-440e-9638-3427747b9201
2017-01-31T11:51:21.35+0530 [APP/0]      OUT 2017-01-31 06:21:21.353  WARN 11 --- [nio-8080-exec-1] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to https://message-data-client-hystrix.paas.abc.com/hystrix.stream : 503 : HTTP/1.1 503 Service Unavailable
2017-01-31T11:51:21.35+0530 [RTR/0]      OUT message-data-client-hystrix.paas.abc.com - [31/01/2017:06:21:21.245 +0000] "GET /proxy.stream?origin=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream HTTP/1.1" 200 0 0 "https://message-data-client-hystrix.paas.abc.com/hystrix/monitor?stream=https%3A%2F%2Fmessage-data-client-hystrix.paas.abc.com%2Fhystrix.stream" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36" 16.16.16.16:51872 x_forwarded_for:"10.10.10.10" x_forwarded_proto:"https" vcap_request_id:89c8703d-37fd-4c86-741a-12e203375864 response_time:0.109522046 app_id:be1a1723-44ce-440e-9638-3427747b9201

I hope it helps.

I couldn't see any log entry marked as Debug in the logs for Hystrix logs. At the moment, I am depending upon Spring Logging property - logging.level.org.springframework.web=DEBUG to get Debug level.

Is there any other property I could use to get more detailed Hystirx logs?

Comment From: spencergibb

For logging: com.netflix.hystrix. The hystrix dashboard maintains persistent connections to the streams. The circuit breaker has to be passed through before any data will show. When the connection is broken, the dashboard will need to be reloaded.

Comment From: ashwgupt

I understand that, the dashboard maintains connection to the stream and auto-refreshes based upon continuous stream of data received.

The edge case am talking about happens only when an attempt is made to refresh a working dashboard (connected to stream) manually by refreshing the browser. In that case the dashboard receives HTTP-503 from stream endpoint and fails to connect to stream resulting in broken dashboard.

Hence I am trying to understand - If that's an expected behaviour or a limitation that dis-allows one from manual refreshes of dashboard after it has already acquired a connections with the stream.

Any inputs?

For logging hystirx: is this the correct property to use -logging.level.com.netflix.hystrix=DEBUG?

Comment From: spencergibb

The logging statement looks right. As far as I've know, I've never seen a 503 when refreshing the dashboard. I wonder if it is specific to your environment.

Comment From: ashwgupt

@spencergibb have you tried it on CF? As the errors we observed are only when hystrix protected apps and the dashboard is run on CF.

Comment From: ashwgupt

To add further, there is also a clear fixed pattern that's observed every time with the dashboard running on PCF i.e. once the dashboard establishes a connection with the hystrix stream and starts displaying stats, if we leave it running without any manual refresh things will keep working okay. Whereas if attempts for manual refresh are made, exactly at 2nd refresh, when it has exhausted the MaxConcurrentConnections for the /hystrix.stream endpoint, the dashboard starts receiving 503 from the stream and hence stops displaying stats.

Below are the logs snippets about the same:

I could see that happening from the logs as below: 1. Establishing first connection with stream => HTTP-200 received with Dashboard working fine

2017-02-07T13:32:38.97+0530 [APP/0]      OUT 2017-02-07 08:02:38.978  INFO 11 --- [nio-8080-exec-1] ashboardConfiguration$ProxyStreamServlet :
2017-02-07T13:32:38.97+0530 [APP/0]      OUT Proxy opening connection to: https://anti-fragile-recursive.abc.com/hystrix.stream
2017-02-07T13:32:38.97+0530 [APP/0]      OUT 2017-02-07 08:02:38.979  INFO 11 --- [nio-8080-exec-6] ashboardConfiguration$ProxyStreamServlet :
2017-02-07T13:32:38.97+0530 [APP/0]      OUT Proxy opening connection to: https://anti-fragile-recursive.abc..com/hystrix.stream
  1. 1st Manual refresh => HTTP-503 received for one connections but Dashboard still working fine
2017-02-07T13:32:48.05+0530 [APP/0]      OUT 2017-02-07 08:02:48.051  INFO 11 --- [nio-8080-exec-7] ashboardConfiguration$ProxyStreamServlet :
2017-02-07T13:32:48.05+0530 [APP/0]      OUT Proxy opening connection to: https://anti-fragile-recursive.abc.com/hystrix.stream
2017-02-07T13:32:48.07+0530 [APP/0]      OUT 2017-02-07 08:02:48.073  INFO 11 --- [nio-8080-exec-4] ashboardConfiguration$ProxyStreamServlet :
2017-02-07T13:32:48.07+0530 [APP/0]      OUT Proxy opening connection to: https://anti-fragile-recursive.abc.com/hystrix.stream
2017-02-07T13:32:48.18+0530 [RTR/0]      OUT anti-fragile-recursive.abc.com - [07/02/2017:08:02:48.119 +0000] "GET /hystrix.stream HTTP/1.1" 503 0 143 "-" "Apache-HttpClient/4.5.2 (Java/1.8.0_121)" 172.16.255.2:60979 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:a4bb9dfa-ab0b-429c-794a-9ed31e257fb2 response_time:0.061702234 app_id:1ddeda81-d088-42ef-a446-9c3d9cdd9735
2017-02-07T13:32:48.18+0530 [APP/0]      OUT 2017-02-07 08:02:48.181  WARN 11 --- [nio-8080-exec-4] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to https://anti-fragile-recursive.abc.com/hystrix.stream : 503 : HTTP/1.1 503 Service Unavailable
  1. 2nd Manual refresh => HTTP-503 received for both connections results in Broken Dashboard
2017-02-07T13:33:06.01+0530 [APP/0]      OUT 2017-02-07 08:03:06.016  INFO 11 --- [nio-8080-exec-6] ashboardConfiguration$ProxyStreamServlet :
2017-02-07T13:33:06.01+0530 [APP/0]      OUT Proxy opening connection to: https://anti-fragile-recursive.abc.com/hystrix.stream
2017-02-07T13:33:06.01+0530 [APP/0]      OUT 2017-02-07 08:03:06.017  INFO 11 --- [io-8080-exec-11] ashboardConfiguration$ProxyStreamServlet :
2017-02-07T13:33:06.01+0530 [APP/0]      OUT Proxy opening connection to: https://anti-fragile-recursive.abc.com/hystrix.stream
2017-02-07T13:33:06.07+0530 [RTR/0]      OUT anti-fragile-recursive.abc.com - [07/02/2017:08:03:06.070 +0000] "GET /hystrix.stream HTTP/1.1" 503 0 143 "-" "Apache-HttpClient/4.5.2 (Java/1.8.0_121)" 172.16.255.2:61961 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:86747454-7e3e-4e5b-5a94-ed3e2c06a6ef response_time:0.008327988 app_id:1ddeda81-d088-42ef-a446-9c3d9cdd9735
2017-02-07T13:33:06.07+0530 [RTR/1]      OUT anti-fragile-recursive.abc.com - [07/02/2017:08:03:06.064 +0000] "GET /hystrix.stream HTTP/1.1" 503 0 143 "-" "Apache-HttpClient/4.5.2 (Java/1.8.0_121)" 172.16.255.2:60114 x_forwarded_for:"10.166.252.10" x_forwarded_proto:"https" vcap_request_id:8d579a8c-94f9-4bc2-76c0-fa9a60094610 response_time:0.014343617 app_id:1ddeda81-d088-42ef-a446-9c3d9cdd9735
2017-02-07T13:33:06.07+0530 [APP/0]      OUT 2017-02-07 08:03:06.079  WARN 11 --- [io-8080-exec-11] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to https://anti-fragile-recursive.abc.com/hystrix.stream : 503 : HTTP/1.1 503 Service Unavailable
2017-02-07T13:33:06.08+0530 [APP/0]      OUT 2017-02-07 08:03:06.080  WARN 11 --- [nio-8080-exec-6] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to https://anti-fragile-recursive.abc.com/hystrix.stream : 503 : HTTP/1.1 503 Service Unavailable

Logs such as

o.s.w.s.m.m.a.HttpEntityMethodProcessor  : Written [{timestamp=Tue Feb 07 08:04:26 UTC 2017, status=503, error=Service Unavailable, message=MaxConcurrentConnections reached: 5, path=/hystrix.stream}] as "application/json" using [org.springframework.http.converter.json.MappingJackson2HttpMessageConverter@5f2f577]

are visible in the logs indicating the connections exhausted at /hystrix.stream endpoint

So my assumption is that the connection release mechanism is somehow mal-functioning when running the dashboard on CF. Any thoughts?

Any such evidences in your setup on CF?

Comment From: spencergibb

We don't use turbine over http on CF. We use turbine stream.

Comment From: ashwgupt

I believe you meant, you don't use hystrix steam but turbine, don't you?

Comment From: spencergibb

No. Turbine connects to hystrix streams via http. On CF we use spring-cloud-netflix-turbine-stream to gather hystrix metrics via a message broker rather than http.

Comment From: spencergibb

This module has entered maintenance mode. This means that the Spring Cloud team will no longer be adding new features to the module. We will fix blocker bugs and security issues, and we will also consider and review small pull requests from the community.

Comment From: javaHelper

Could you please guide me here: https://stackoverflow.com/questions/61444872/org-springframework-cloud-netflix-hystrix-dashboard-hystrixdashboardconfiguratio ?