1. 28 Feb, 2016 2 commits
  2. 26 Feb, 2016 2 commits
  3. 25 Feb, 2016 1 commit
  4. 23 Feb, 2016 1 commit
  5. 16 Feb, 2016 1 commit
    • Add spring.boot.admin.client.enabled property · 45a19cd4
      Robert Winkler authored
      Add spring.boot.admin.client.enabled property to explicitly disable the
      spring-boot-admin-client, (e.g. for unit tests). Defaults to true. The client is
      active when spring.boot.admin.client.enabled is true and spring.boot.admin.url
      is set.
      
      fixes #156
  6. 14 Feb, 2016 2 commits
  7. 11 Feb, 2016 1 commit
  8. 02 Feb, 2016 2 commits
  9. 10 Jan, 2016 1 commit
    • Add option for fallback servers to register at · 25b3e509
      Johannes Edmeier authored
      In case you have clustered admin servers, you can now specify multiple urls for
      the client to register at. So that in the case the first server is down it will
      register at the next one specified in the list. This allows you to do cluster-
      ing without the need for a load-balanced host.
  10. 09 Jan, 2016 2 commits
  11. 18 Dec, 2015 4 commits
  12. 15 Dec, 2015 3 commits
  13. 14 Dec, 2015 1 commit
  14. 13 Dec, 2015 4 commits
  15. 10 Dec, 2015 2 commits
  16. 09 Dec, 2015 1 commit
    • Consider servlet-path for guessing management-url · a0ffe33a
      Johannes Edmeier authored
      Take the servlet-path into account when computing the management-/healht-url.
      This is not done for the service-url, since the main use-case for setting the
      servlet-path is to get the dispatcher-servlet out of the way for other servlets.
      
      fixes #133
  17. 07 Dec, 2015 1 commit
  18. 06 Dec, 2015 1 commit
  19. 03 Dec, 2015 1 commit
  20. 01 Dec, 2015 2 commits
  21. 22 Nov, 2015 2 commits
  22. 21 Nov, 2015 2 commits
  23. 17 Nov, 2015 1 commit
    • Add smart lookup for logback JMXConfigurator MBean · f4b2c380
      Johannes Edmeier authored
      Rather than relying on a constant mbean name for logbacks JMXConfigurator mbean, search for
      all available beans of the type. If a single one is found take that. If multiple are found
      first choose the one with Name=application name, if not present take the one with Name=default.
      In case none matches display an error.
      
      closes #124