1. 17 Sep, 2017 1 commit
    • Rename Application to Instance and remove /api prefix · 4a0ff1e6
      Johannes Edmeier authored
      It turns out that imho when talking about application groups (identified
      by name) and application instances it's just logical to speak of
      instances and applications. So the Application class get's renamed to
      Instance. So an Application is now a set of Instances with the same name
  2. 28 Aug, 2017 2 commits
  3. 27 Aug, 2017 2 commits
  4. 24 Aug, 2017 2 commits
  5. 23 Aug, 2017 2 commits
  6. 09 Aug, 2017 1 commit
    • Detect actuator endpoints · cc544df4
      Johannes Edmeier authored
      The actuator endpoints are detected by either querying the index
      endpoint for spring boot 2.x applications or by probing a configurable
      list of endpoints using a OPTIONS request.
  7. 08 Aug, 2017 1 commit
  8. 30 Jul, 2017 2 commits
  9. 25 Jul, 2017 21 commits
  10. 24 Jul, 2017 5 commits
  11. 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