1. 05 Jul, 2018 1 commit
  2. 30 Jun, 2018 1 commit
  3. 29 Jun, 2018 1 commit
  4. 27 Jun, 2018 1 commit
  5. 26 Jun, 2018 1 commit
  6. 25 Jun, 2018 1 commit
  7. 22 Jun, 2018 2 commits
  8. 21 Jun, 2018 1 commit
  9. 19 Jun, 2018 5 commits
  10. 18 Jun, 2018 3 commits
  11. 16 Jun, 2018 1 commit
    • Support ansi colors and hyperlinks in logfile view · b40fb7ea
      Johannes Edmeier authored
      Everythind that looks like an http(s) url will be rendered as hyperlink
      and ansi-color escapes are now supported.
      
      In order to have ansi-colors in the file output you need to set a custom
      pattern. e.g.:
      logging.pattern.file="%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(%5p) %clr(${PID}){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n%wEx"
      
      closes #670
  12. 15 Jun, 2018 1 commit
  13. 14 Jun, 2018 4 commits
  14. 13 Jun, 2018 1 commit
  15. 11 Jun, 2018 1 commit
  16. 10 Jun, 2018 4 commits
  17. 09 Jun, 2018 2 commits
  18. 08 Jun, 2018 3 commits
  19. 07 Jun, 2018 2 commits
  20. 29 May, 2018 2 commits
  21. 25 May, 2018 2 commits
    • Using ehcache the cache statistics are not showing up · ae8596cd
      Johannes Edmeier authored
      The caches.size metric is not available for every cache implementation.
      If the metric is not available the ui should still show hits and misses.
      This commit ignores errors for the cache size and will do no further
      requests for this metric after an error occurred.
      
      fixes #756
    • Fix proxying of requests where the path contains spaces · 2588b11d
      Johannes Edmeier authored
      Setting a loglevel for logger names with spaces currently fails because
      the servlet.InstanceProxyController messes with the encoding. With this
      commit the path is correctly encoded before being forwarded.
      
      fixes #755