1. 16 Nov, 2016 3 commits
    • Add details to the StatusInfo · 68173d87
      Johannes Edmeier authored
      The StatusInfo has a new details field. The StatusUpdater puts either the
      reponse from the health endpoint or the exception message in the details.
      This allows us to see the details over time (via the journal) and also to
      use `em in a bit more mail notifications.
      
      closes #329
    • Merge branch '1.4.x' · c8a1ae9e
      Johannes Edmeier authored
    • Respect management.ssl.* settings · 79eb9496
      Johannes Edmeier authored
      The managment.ssl.* properties needs to be taken into account when they
      are explicitly set and the managment.port differs from server.port
      
      fixes #333
  2. 15 Nov, 2016 2 commits
    • Detangle server from client · a99a889a
      Johannes Edmeier authored
      With this commits the server no longer depends on the client. The
      classes for the clients are moved to de.codecentric.boot.admin.client
      package.
      Since the perspective on applications is totally different from client
      and server the model has been split apart.
      
      What means this for users:
      1) The client is no longer a transitive dependency for your admin server
      you may need to add it explicitly to your dependencies, respectively
      jolokia-core in case you're using discovery and want to use the jmx-bean
      interface
      
      2)In case you have cutomised parts of the client you need to reflect the
      package change.
      
      fixes #332
  3. 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
  4. 10 Nov, 2016 2 commits
  5. 08 Nov, 2016 4 commits
  6. 07 Nov, 2016 6 commits
  7. 06 Nov, 2016 2 commits
  8. 03 Nov, 2016 4 commits
  9. 02 Nov, 2016 4 commits
  10. 26 Oct, 2016 3 commits
  11. 19 Oct, 2016 1 commit
  12. 17 Oct, 2016 3 commits
  13. 16 Oct, 2016 2 commits
  14. 15 Oct, 2016 2 commits
  15. 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