{ "opencollection": "1.0.0", "info": { "name": "Spring Boot Actuator Beans Loggers API", "version": "3.x" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Loggers", "type": "folder" }, "items": [ { "info": { "name": "List Loggers", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:8080/actuator/loggers" }, "docs": "Returns the configured log levels for all loggers in the application." }, { "info": { "name": "Get Logger Configuration", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:8080/actuator/loggers/:name", "params": [ { "name": "name", "value": "com.example.app", "type": "path", "description": "Logger name (e.g., com.example.MyService, ROOT)" } ] }, "docs": "Returns the configured and effective log level for a specific logger." }, { "info": { "name": "Set Logger Level", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:8080/actuator/loggers/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Logger name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Changes the log level for a specific logger at runtime without restarting the application." } ] } ], "bundled": true }