1. 03 Dec, 2016 2 commits
    • Use full width for hystrix dashboard · 0322f025
      Johannes Edmeier authored
      closes #348
    • Resolve dynamic views lazily · a0cc96c7
      Johannes Edmeier authored
      When the list contains a lots of applications many requests are made for
      dynamic views (e.g. heapdump, flyway, logfile, ...). With this commit
      the availability check for these views is deferred until the user opens
      toggles the dropdown. This should lead to far fewer requests.
      
      fixes #346
      
      Additionally the url list is not anymore overlapped then having a lot of
      tabs for the detail views.
      
      fixes #347
  2. 02 Nov, 2016 1 commit
    • Add Turbine UI Module · bb765862
      Johannes Edmeier authored
      With this commit the support for Turbine is completly revised. From now
      on Turbine is supported via a separate module and is integrated as top
      level view.
      
      closes #306
  3. 03 Oct, 2016 1 commit
  4. 25 Sep, 2016 1 commit
    • Don't use a eventsource for detecting hystrix · 57bae5d1
      Johannes Edmeier authored
      In case a hystrix.stream does'nt sends any data and just a ping the endpoint is
      not detecet correctly and the ui get unresponsive. The problem is that the sent
      "ping:" chunk doesn't triggers the message event listener.
      So instead we use a simple HEAD-request to get the header and status.
      
      fixes #276
  5. 10 Sep, 2016 1 commit
  6. 04 Sep, 2016 1 commit
    • Add ui-hystrix module · ccd794d5
      Johannes Edmeier authored
      By using the netflix/hystrix-dashboard this module allows you to view the
      metrics from hystrix/turbine in the spring boot admin server. This module needs
      to be added explicitly.
      
      closes #147