WildFly Logging Subsystem CLI Configuration
Jump to navigation
Jump to search
External
- Logging Configuration in the CLI https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.4/html/Administration_and_Configuration_Guide/sect-Logging_Configuration_in_the_CLI.html
Internal
Adding a Periodic Rotating File Log Handler
No restart is required.
batch /subsystem=logging/periodic-rotating-file-handler=TEST:add(file={"path"=>"test.log", "relative-to"=>"jboss.server.log.dir"}, suffix=".yyyy-MM-dd", append="true") /subsystem=logging/periodic-rotating-file-handler=TEST:write-attribute(name="formatter", value="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n") /subsystem=logging/periodic-rotating-file-handler=TEST:write-attribute(name="autoflush", value="true") run-batch
System properties can be specified without "${}"
The "formatter" attribute specified above expands as:
<periodic-rotating-file-handler ...> ... <formatter> <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/> </formatter> ... </periodic-rotating-file-handler>
The result of the above set of CLI operations is:
<server ...> ... <profile> <subsystem xmlns="urn:jboss:domain:logging:1.5"> ... <periodic-rotating-file-handler name="TEST" autoflush="true"> <formatter> <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/> </formatter> <file relative-to="jboss.server.log.dir" path="test.log"/> <suffix value=".yyyy-MM-dd"/> <append value="true"/> </periodic-rotating-file-handler> ... </subsystem> ... </profile> ... </server>
For general considerations on adding arbitrary management nodes and attributes see:
Removing a Log Handler
No restart is required.
/subsystem=logging/file-handler=TEST:remove
However, a log handler can only be removed if it is not being referenced by a log category or an async log handler, otherwise an error message similar to the following is shown:
{ "outcome" => "failed", "failure-description" => "JBAS011558: Handler TEST is attached to the following loggers and cannot be removed; [org.infinispan, org.infinispan.server.endpoint, org.jboss.as.clustering.infinispan]", "rolled-back" => true }
For general considerations on removing an arbitrary management model node: