1. 21 Sep, 2016 1 commit
  2. 16 Sep, 2016 1 commit
    • Make the AbstractNotifier work for any event. · af951b06
      Johannes Edmeier authored
      With this change the AbstractNotifier isn't specialized on status changes, but
      the default behaviour for the existing notifiers isn't changed.
      In addition the existing notifiers have been improved so that subclassing has
      become easier.
      To have existing notifiers acting on other events you need to override
      shouldNotify().
      
      fixes #270
  3. 13 Sep, 2016 1 commit
  4. 12 Sep, 2016 1 commit
  5. 10 Sep, 2016 1 commit
  6. 06 Sep, 2016 1 commit
  7. 04 Sep, 2016 7 commits
  8. 28 Aug, 2016 2 commits
  9. 27 Aug, 2016 2 commits
  10. 26 Aug, 2016 2 commits
    • Prevent threads from surviving the application context shutdown. · d6478b2a
      Johannes Edmeier authored
      As it turns out (rather obvious) that the ThreadPools for registration and
      status updating needs to be destroyed on application shutdown so that the
      worker threads gets cancelled. To achieve this we simply register the
      ThreadPools as spring beans (since they are implementing DisposableBean).
      
      fixes #253
    • Use the SimpleClientHttpRequestFactory · c8be9561
      Johannes Edmeier authored
      Apparently when the Netty4ClientHttpRequestFactory is being used the content-
      lenght header is not being set in the POST request. Therefore the simple one is
      now being hardcoded to override decetion by the RestTemplateBuilder.
      
      fixes #248
  11. 10 Aug, 2016 3 commits
  12. 08 Aug, 2016 2 commits
  13. 07 Aug, 2016 11 commits
  14. 29 Jul, 2016 1 commit
  15. 28 Jul, 2016 1 commit
    • Group applications by name; redesign info column · 2d45fb4b
      Johannes Edmeier authored
      After this commit the applications in the overview are grouped by application-
      name. In case the search box is used all groups get expanded automatically.
      Additionally the info column is now expandable via button and not a pre-section
      anymore.
      
      closes #218
  16. 21 Jul, 2016 2 commits
  17. 20 Jul, 2016 1 commit
    • Detect heapdump-endpoint via OPTIONS request · 911f8e83
      Johannes Edmeier authored
      Since a HEAD request to the heapdump triggers a dump we need to test the
      availability of the heapdump endppoint via OPTIONS-request.
      To get this working we need to ensure that the OPTIONS-request are dispatched
      to the zuul servlet as this wasn't done prio to this commit adding the
      OptionsDispatchingZuulController.