1. 12 Mar, 2018 1 commit
  2. 04 Mar, 2018 1 commit
  3. 20 Feb, 2018 3 commits
  4. 19 Feb, 2018 1 commit
  5. 26 Jan, 2018 1 commit
  6. 13 Jan, 2018 2 commits
  7. 01 Jan, 2018 1 commit
  8. 30 Nov, 2017 1 commit
  9. 16 Nov, 2017 1 commit
  10. 13 Sep, 2017 2 commits
  11. 24 Aug, 2017 1 commit
  12. 08 Aug, 2017 1 commit
  13. 30 Jul, 2017 1 commit
  14. 25 Jul, 2017 3 commits
  15. 24 Jul, 2017 1 commit
  16. 23 Jul, 2017 1 commit
    • Improve the client configuration for usage in war-file deployments · 2848a637
      Johannes Edmeier authored
      With this commit two new properties were added to ease the client
      configuration when used in servlet containers:
      `spring.boot.admin.client.management-base-url` and
      `spring.boot.admin.client.service-base-url`. Both properties can be used
      to specify protocol, host and port for the urls. The paths will still be
      guessed and appended to the base-urls. Additionally the servlet context
      path is not read from the properties but from the ServletContext itself.
      
      closes #488
  17. 28 Jun, 2017 1 commit
  18. 19 May, 2017 1 commit
    • Add properties to configure timeouts when querying the applications · 77767bff
      Johannes Edmeier authored
      Until now the thread querying the application endpoint can be blocked
      for a very long time when the application is inresponsive. With this
      commit two new properties `spring.boot.admin.monitor.read-timeout`
      (default: 2s) and `spring.boot.admin.monitor.connect-timeout` (default:
      5s) are added.
      
      closes #462
  19. 07 May, 2017 1 commit
  20. 29 Mar, 2017 1 commit
  21. 15 Mar, 2017 1 commit
    • Add option to whitelist services from discovery · 11ca47c6
      Maxime RIVIERE authored
      A new property `spring.boot.admin.discovery.services` is added. It can
      be used to restrict the services registered via discovery to a
      whitelist (supporting simple patterns). Until now only blacklistin was
      supported. The default whitelist permits all services.
  22. 26 Feb, 2017 2 commits
  23. 24 Jan, 2017 1 commit
  24. 16 Jan, 2017 1 commit
  25. 12 Jan, 2017 1 commit
  26. 28 Dec, 2016 1 commit
  27. 21 Dec, 2016 2 commits
  28. 17 Dec, 2016 1 commit
  29. 14 Dec, 2016 1 commit
    • Add metadata to the applications · 21c17900
      Johannes Edmeier authored
      With this commit you can now associate your applications with custom
      metadata using `spring.boot.admin.client.metadata.*` sensitive values
      are recognized by key and are masked in the http interface.
      
      This can be useful in the future if there are instance specific settings
      which should be used by the admin server, e.g. custom notification
      recipients.
      
      For now there is no extra imetadata view in the ui. The values are shown
      in the environment view.
  30. 20 Nov, 2016 1 commit
    • Add ApplicationFactory · 3e16bad1
      rfelgentraeger authored
      With this commit the concept of an ApplicationFactory is introduced.
      This allows you to easily modify the information used to register
      your application at the admin server
      
      closes #331
  31. 15 Nov, 2016 1 commit
  32. 12 Nov, 2016 1 commit
    • Use the loggers endpoint from boot 1.5.x · d6cb259c
      Johannes Edmeier authored
      Add support for the /loggers endpoint from spring boot 1.5.x. With this
      change log4j2 (and every other logging backend supported by spring boot)
      is supported in the logging view.
      The old implementation will be kept a while, so that the clients aren't
      forced to migrate.
      
      closes #305