Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to roll the log file on startup in logback

I would like to configure logback to do the following.

  • Log to a file
  • Roll the file when it reaches 50MB
  • Only keep 7 days worth of logs
  • On startup always generate a new file (do a roll)

I have it all working except for the last item, startup roll. Does anyone know how to achieve that? Here's the config...

  <appender name="File" class="ch.qos.logback.core.rolling.RollingFileAppender">      <layout class="ch.qos.logback.classic.PatternLayout">       <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg \(%file:%line\)%n</Pattern>     </layout>      <File>server.log</File>      <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">       <FileNamePattern>server.%d{yyyy-MM-dd}.log</FileNamePattern>       <!-- keep 7 days' worth of history -->       <MaxHistory>7</MaxHistory>        <TimeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">         <MaxFileSize>50MB</MaxFileSize>       </TimeBasedFileNamingAndTriggeringPolicy>      </rollingPolicy>   </appender> 
like image 728
Mike Q Avatar asked Mar 22 '10 12:03

Mike Q


People also ask

What is rolling policy in Logback?

Size-based rolling policy allows to rollover based on file on each log file. For example, we can rollover to a new file when the log file reaches 10 MB in size. The maxFileSize is used to specify the size of each file when it gets rolled over.

Where do I put the Logback file?

In a Spring Boot application, you can put the Logback. xml file in the resources folder. If your Logback. xml file is outside the classpath, you need to point to its location using the Logback.


2 Answers

None of the other suggestions was appropriate for my situation. I didn't want to use a size-and-time-based solution, because it requires configuring a MaxFileSize, and we are using a strictly time-based policy. Here is how I accomplished rolling the file on startup with a TimeBasedRollingPolicy:

@NoAutoStart public class StartupTimeBasedTriggeringPolicy<E>          extends DefaultTimeBasedFileNamingAndTriggeringPolicy<E> {      @Override     public void start() {         super.start();         nextCheck = 0L;         isTriggeringEvent(null, null);         try {             tbrp.rollover();         } catch (RolloverFailure e) {             //Do nothing         }     }  } 

The trick is to set the nextCheck time to 0L, so that isTriggeringEvent() will think it's time to roll the log file over. It will thus execute the code necessary to calculate the filename, as well as conveniently resetting the nextCheck time value. The subsequent call to rollover() causes the log file to be rolled. Since this only happens at startup, it is a more optimal solution than the ones that perform a comparison inside isTriggerEvent(). However small that comparison, it still degrades performance slightly when executed on every log message. This also forces the rollover to occur immediately at startup, instead of waiting for the first log event.

The @NoAutoStart annotation is important to prevent Joran from executing the start() method before all the other initialisation is complete. Otherwise, you get a NullPointerException.

Here is the config:

  <!-- Daily rollover appender that also appends timestamp and rolls over on startup -->   <appender name="startupDailyRolloverAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">     <file>${LOG_FILE}</file>     <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">       <fileNamePattern>${LOG_FILE}.%d{yyyyMMdd}_%d{HHmmss,aux}</fileNamePattern>       <TimeBasedFileNamingAndTriggeringPolicy class="my.package.StartupTimeBasedTriggeringPolicy" />     </rollingPolicy>     <encoder>       <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>     </encoder>   </appender>  

Hope this helps!

like image 117
Dave Avatar answered Sep 24 '22 01:09

Dave


For a solution using already existing components the logback suggests the uniquely named files: http://logback.qos.ch/manual/appenders.html#uniquelyNamed

During the application development phase or in the case of short-lived applications, e.g. batch applications, it is desirable to create a new log file at each new application launch. This is fairly easy to do with the help of the <timestamp> element.

<?xml version="1.0" encoding="UTF-8"?> <configuration>     <timestamp key="startTimestamp" datePattern="yyyyMMddHHmmssSSS"/>     <appender name="File"     class="ch.qos.logback.core.rolling.RollingFileAppender">         <layout class="ch.qos.logback.classic.PatternLayout">             <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg \(%file:%line\)%n</Pattern>         </layout>          <file>server-${startTimestamp}.log</file>          <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">             <FileNamePattern>server-${startTimestamp}-%d{yyyy-MM-dd}-%i.log</FileNamePattern>             <!-- keep 7 days' worth of history -->             <MaxHistory>7</MaxHistory>              <TimeBasedFileNamingAndTriggeringPolicy             class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">                 <MaxFileSize>1KB</MaxFileSize>             </TimeBasedFileNamingAndTriggeringPolicy>         </rollingPolicy>     </appender>     <root level="DEBUG">         <appender-ref ref="File" />     </root> </configuration> 

UPDATED for logback-1.2.1

<?xml version="1.0" encoding="UTF-8"?> <configuration>     <timestamp key="startTimestamp" datePattern="yyyyMMddHHmmssSSS"/>     <appender name="File"     class="ch.qos.logback.core.rolling.RollingFileAppender">         <layout class="ch.qos.logback.classic.PatternLayout">             <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg \(%file:%line\)%n</Pattern>         </layout>          <file>server-${startTimestamp}.log</file>          <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">             <fileNamePattern>server-${startTimestamp}-%d{yyyy-MM-dd}-%i.log</fileNamePattern>             <maxFileSize>10MB</maxFileSize>             <!-- keep 7 days' worth of history -->             <maxHistory>7</maxHistory>             <totalSizeCap>20GB</totalSizeCap>         </rollingPolicy>     </appender>     <root level="DEBUG">         <appender-ref ref="File" />     </root> </configuration> 
like image 21
raisercostin Avatar answered Sep 22 '22 01:09

raisercostin