VOOZH about

URL: https://www.javacodegeeks.com/2017/03/spring-boot-configure-log-level-runtime-using-actuator-endpoint.html

⇱ Spring Boot - Configure Log Level in runtime using actuator endpoint - Java Code Geeks


As of Spring Boot 1.5 a new loggers actuator endpoint allows viewing and changing application logging levels in runtime.

  • Add spring-boot-actuator to your project
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
  • Disable security for loggers or for all endpoints

Set either management.security.enabled to false or endpoints.loggers.sensitive to false to disable security. Note that the latter changes only loggers endpoint.

  • Get all loggers details

Execute /loggers endpoint in the browser or with curl. You will get a detailed view of the loggers configuration, e.g (fragment):

{
 "levels": [
 "OFF",
 "ERROR",
 "WARN",
 "INFO",
 "DEBUG",
 "TRACE"
 ],
 "loggers": {
 "ROOT": {
 "configuredLevel": "TRACE",
 "effectiveLevel": "TRACE"
 },
 "org": {
 "configuredLevel": null,
 "effectiveLevel": "TRACE"
 },
 "pl.codeleak.demos.sbt": {
 "configuredLevel": null,
 "effectiveLevel": "TRACE"
 },
 "pl.codeleak.demos.sbt.Application": {
 "configuredLevel": null,
 "effectiveLevel": "TRACE"
 }
 }
}
  • Get selected logger details

Use the following endpoint to get details of a selected logger:

/logger/{logger}

Examples:

Ξ» curl -i http://localhost:8080/loggers/ROOT

{
"configuredLevel": null,
"effectiveLevel": "TRACE"
}

Ξ» curl -i http://localhost:8080/loggers/pl.codeleak.demos

{
"configuredLevel": null,
"effectiveLevel": "TRACE"
}
  1. Update selected logger level in runtime

Execute a POST request:

curl -i -X POST -H 'Content-Type: application/json' -d '{"configuredLevel": "TRACE"}' http://localhost:8080/loggers/ROOT

Source code

The example configuration can be found in https://github.com/kolorobot/spring-boot-thymeleaf repository.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

πŸ‘ Photo of Rafal Borowiec
Rafal Borowiec
March 8th, 2017Last Updated: March 7th, 2017
1 447 1 minute read

Rafal Borowiec

Software developer, Team Leader, Agile practitioner, occasional blogger, lecturer. Open Source enthusiast, quality oriented and open-minded.
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Saurav Narayan
7 years ago

Spring Boot – Configure Log Level in run time using actuator endpoint for multiple instance of a spring micro services

0
Reply
Back to top button
Close
wpDiscuz