1. 12 Jan, 2017 2 commits
  2. 08 Jan, 2017 4 commits
  3. 30 Dec, 2016 1 commit
  4. 28 Dec, 2016 1 commit
  5. 27 Dec, 2016 5 commits
  6. 26 Dec, 2016 2 commits
    • Polish · e91b8386
      Johannes Edmeier authored
    • Aggregate info on the server · 6fdaf8c1
      Johannes Edmeier authored
      The info is now fetched by the server on status change. This way the
      info can be used in the notifications and also improves performance when
      listing a huge amount of applications in the ui.
      
      closes #349
  7. 25 Dec, 2016 1 commit
  8. 24 Dec, 2016 3 commits
  9. 23 Dec, 2016 6 commits
  10. 22 Dec, 2016 1 commit
  11. 21 Dec, 2016 2 commits
  12. 17 Dec, 2016 1 commit
  13. 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.
  14. 10 Dec, 2016 3 commits
  15. 04 Dec, 2016 1 commit
  16. 03 Dec, 2016 2 commits
    • Use full width for hystrix dashboard · 0322f025
      Johannes Edmeier authored
      closes #348
    • Resolve dynamic views lazily · a0cc96c7
      Johannes Edmeier authored
      When the list contains a lots of applications many requests are made for
      dynamic views (e.g. heapdump, flyway, logfile, ...). With this commit
      the availability check for these views is deferred until the user opens
      toggles the dropdown. This should lead to far fewer requests.
      
      fixes #346
      
      Additionally the url list is not anymore overlapped then having a lot of
      tabs for the detail views.
      
      fixes #347
  17. 21 Nov, 2016 1 commit
  18. 20 Nov, 2016 3 commits
    • Fix dropdown alignment · 948bfc9b
      Johannes Edmeier authored
    • Remember how the application was registered · 08b16417
      Johannes Edmeier authored
      From this commit on the source from wich the application was registered
      is remembered. We use this information for two things:
       * For applications which wasn't registered via the http-api the remove
         button is hidden.
       * The `ApplicationDiscoveryListener` only removes stale applications
         (those which are not anymore found via discovery) if the were registered
         via the `ApplicationDiscoeryListener`.
      
      closes #328
    • 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