1. 10 Feb, 2017 3 commits
  2. 25 Dec, 2016 1 commit
  3. 23 Dec, 2016 2 commits
  4. 15 Dec, 2016 1 commit
  5. 10 Dec, 2016 2 commits
    • Fix broken info fetching · cdcd1582
      Johannes Edmeier authored
    • Improve rendering performance for application list · 34b2a071
      Johannes Edmeier authored
      * Number of concurrent requests for fetching the application info is
        limited to 15 requests
      
      * Fetching the application info is deferred by 50ms to let the browser
        render the view
      
      * Flattened application/group structure to save inner ng-repeat
      
      * ng-repeat for notification settings and view drop down is executed
        when the popup/dropdown is visible
  6. 04 Dec, 2016 1 commit
  7. 03 Dec, 2016 2 commits
    • Use full width for hystrix dashboard · e8dc463e
      Johannes Edmeier authored
      closes #348
    • Resolve dynamic views lazily · 32e1d9ba
      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
  8. 21 Nov, 2016 1 commit
  9. 20 Nov, 2016 1 commit
    • Add ApplicationFactory · 60c027e2
      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
  10. 16 Nov, 2016 2 commits
  11. 10 Nov, 2016 1 commit
  12. 08 Nov, 2016 3 commits
  13. 07 Nov, 2016 3 commits
  14. 06 Nov, 2016 1 commit
  15. 03 Nov, 2016 3 commits
  16. 02 Nov, 2016 4 commits
  17. 26 Oct, 2016 1 commit
  18. 17 Oct, 2016 3 commits
  19. 16 Oct, 2016 2 commits
  20. 15 Oct, 2016 2 commits
  21. 14 Oct, 2016 1 commit
    • Fix using objects as arguments for jmx operations · 5e55293b
      Johannes Edmeier authored
      With this commit objects are passed now correctly to jolokia. The
      object's needs to be written in json, which is validated for well-
      formedness.
      From now on the attributes are read autmatically when the bean gets
      selected and I fixed that errors weren't displayed.
      
      fixes #301