1. 08 Aug, 2017 1 commit
  2. 30 Jul, 2017 1 commit
  3. 25 Jul, 2017 1 commit
  4. 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
  5. 28 Jun, 2017 1 commit
  6. 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
  7. 07 May, 2017 1 commit
  8. 29 Mar, 2017 1 commit
  9. 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.
  10. 26 Feb, 2017 2 commits
  11. 24 Jan, 2017 1 commit
  12. 16 Jan, 2017 1 commit
  13. 12 Jan, 2017 1 commit
  14. 28 Dec, 2016 1 commit
  15. 21 Dec, 2016 2 commits
  16. 17 Dec, 2016 1 commit
  17. 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.
  18. 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
  19. 15 Nov, 2016 1 commit
  20. 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
  21. 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
  22. 03 Oct, 2016 1 commit
  23. 01 Oct, 2016 1 commit
  24. 23 Sep, 2016 1 commit
  25. 04 Sep, 2016 2 commits
  26. 28 Aug, 2016 1 commit
    • Use build-info for displaying the version · 32e368f5
      Johannes Edmeier authored
      As now with spring boot 1.4 there is a special goal for generating the build-
      information, we use it for displaying the version in spring boot admin. The old
      info.version property still works but is deprecated. From now on
      build.info.version is taken into account.
  27. 07 Aug, 2016 1 commit
  28. 15 Jul, 2016 1 commit
    • Allow registration on multiple servers · ba760e20
      Mike Liu authored
      With this commit you can from now on register the application on multiple
      servers. You need to set spring.boot.admin.register-once to false and
      assign a list of urls to spring.boot.admin.url
  29. 18 Jun, 2016 1 commit
  30. 16 Jun, 2016 1 commit
  31. 14 Jun, 2016 1 commit
  32. 08 Jun, 2016 5 commits
  33. 22 May, 2016 1 commit
    • Add FilteringNotifier · 76c70039
      Johannes Edmeier authored
      This adds a new FilteringNotifier which can use filters to suppres certain
      events from being notified of. Two filter implementation are provided, one
      filtering by name and one by id. Additional when a FilteringNotifier bean is
      present, the autoconfiguration creates a REST-controller to add and remove
      filters at runtime.