Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand that i can use a DailyRollingFileAppender to roll the log file every month, day, half-day, hour or minute. But how can i configure log4j to roll the log file every 15 minutes.

If this is not possible by configuration, please suggest/direct me on how to extend log4j's file appender to achieve this.

Thanks and Regards.

share|improve this question

3 Answers

The Javadoc for DailyRollingFileAppender in Log4J indicates that the time-based rolling only occurs on unit-based rollovers (day, week, month, etc.). That would mean the closest you could get with that pattern is '.'yyyy-MM-dd-HH-mm, which would roll over every minute.

My recommendations would be to do one of the following:

  • Since you're running on a fixed interval, write a custom FileAppender that uses logic borrowed from DailyRollingFileAppender to make the computation
  • If you have some flexibility, switch from Log4J to LOGBack, and write a custom RollingPolicy that uses logic borrowed from the LOGBack time calculations (which will be very similar to the ones in Log4J)

By the way, if you choose the latter, I'd recommend that you consider coding to the SLF4J API, and use LOGBack (or Log4J) as the underlying implementation.

share|improve this answer
Regarding the first option I think you can get by with writing a custom trigerring policy as opposed to writing a new appender. – CoolBeans Feb 1 '11 at 3:00
unfortunately i do not have the flexibility to use LogBack. So yes, i will work on option 1. btw, please advice on how to write a custom trigerring policy. – vbcr Feb 1 '11 at 7:16
I am working on option 1 by extending DailyRollingFileAppender. Will let you guyz know how it went. – vbcr Feb 1 '11 at 7:47
@CoolBeans: I think the TriggeringPolicy is part of LOGBack, not Log4J (at least I could only find it in LOGBack...) – mlschechter Feb 2 '11 at 2:18
1  
I was thinking about this logging.apache.org/log4j/companions/extras/apidocs/org/apache/… . – CoolBeans Feb 2 '11 at 2:27
show 1 more comment

Here is code I use for Hourly. You can alter it for every 15 minutes - see nextCalendar(). It is based on DatedFileAppender.

package com.stackoverflow.log4j;

import java.io.File;
import java.util.Calendar;
import java.util.Date;

import org.apache.log4j.FileAppender;
import org.apache.log4j.spi.LoggingEvent;

/**
 * Based on biz.minaret.log4j.DatedFileAppender, 
 * decompiled with JAD,
 * revised to use optional hours.
 */
public class DistinctDailyFileAppender extends FileAppender {

public static final String DEFAULT_DIRECTORY = "logs";
public static final String DEFAULT_SUFFIX = ".txt";
public static final String DEFAULT_PREFIX = "";

private String directory = DEFAULT_DIRECTORY;
private String prefix = DEFAULT_PREFIX;
private String suffix = DEFAULT_SUFFIX;
private File currentPath = null;
private Calendar currentCalendar = null;
private long nextTime = 0l;
private boolean hourly = false;

/**
 * Constructor.
 */
public DistinctDailyFileAppender() {}

/**
 * This method is automatically called once by the system, 
 * immediately after all properties are set, prior to release.
 */
public void activateOptions() {

    currentPath = new File(directory);
    if (!currentPath.isAbsolute()) {        
        errorHandler.error("Directory failure for appender [" + name + "] : " + directory);
        return;
    }

    currentPath.mkdirs();

    // We can write; initialize calendar
    if (currentPath.canWrite()) {
        currentCalendar = Calendar.getInstance();
    } else {
        errorHandler.error("Cannot write for appender [" + name + "] : " + directory);
        return;
    }       
}

/**
 * This is called, synchronized by parent.
 */
public void append(LoggingEvent event) {

    if (layout == null) {
        errorHandler.error("No layout set for appender [" + name + "].");
        return;
    }

    if (currentCalendar == null) {
        errorHandler.error("Improper initialization for appender [" + name + "].");
        return;
    }

    long nowTime = System.currentTimeMillis();
    if (nowTime >= nextTime) {
        currentCalendar.setTime(new Date(nowTime));
        String timestamp = generateTimestamp(currentCalendar);
        nextCalendar(currentCalendar);
        nextTime = currentCalendar.getTime().getTime();
        File file = new File(currentPath, prefix + timestamp + suffix);
        fileName = file.getAbsolutePath();
        super.activateOptions();
    }

    if (super.qw == null) {

        errorHandler.error("No output stream or file set for the appender named [" + name + "].");
        return;

    } else {

        subAppend(event);
        return;

    }
}

protected String generateTimestamp(Calendar calendar) {

    int year = calendar.get(Calendar.YEAR);
    int month = calendar.get(Calendar.MONTH) + 1;
    int day = calendar.get(Calendar.DAY_OF_MONTH);
    int hour = calendar.get(Calendar.HOUR_OF_DAY);
    int minutes = calendar.get(Calendar.MINUTE);
    int seconds = calendar.get(Calendar.SECOND);

    StringBuffer buffer = new StringBuffer();

    if (year < 1000) {
        buffer.append('0');
        if (year < 100) {
            buffer.append('0');
            if (year < 10) {
                buffer.append('0');
            }
        }
    }
    buffer.append(Integer.toString(year));
    buffer.append('-');

    if (month < 10) {
        buffer.append('0');
    }
    buffer.append(Integer.toString(month));
    buffer.append('-');

    if (day < 10) {
        buffer.append('0');
    }
    buffer.append(Integer.toString(day));
    buffer.append('_');

    if (hour < 10) {
        buffer.append('0');
    }
    buffer.append(Integer.toString(hour));

    if (minutes < 10) {
        buffer.append('0');
    }
    buffer.append(Integer.toString(minutes));

    if (seconds < 10) {
        buffer.append('0');
    }
    buffer.append(Integer.toString(seconds));

    return buffer.toString();
}

protected void nextCalendar(Calendar calendar) {
    int i = calendar.get(Calendar.YEAR);
    int j = calendar.get(Calendar.MONTH);

    if (hourly) { 
        int k = calendar.get(Calendar.DAY_OF_MONTH);
        int l = calendar.get(Calendar.HOUR_OF_DAY) + 1;
        calendar.clear();
        calendar.set(i, j, k, l, 0);
    } else {
        int k = calendar.get(Calendar.DAY_OF_MONTH) + 1;
        calendar.clear();
        calendar.set(i, j, k);
    }
}

public String getDirectory() {
    return directory;
}

public void setDirectory(String directory) {
    if (directory == null || directory.length() == 0) {
        this.directory = "."; // Set to here
    } else {
        this.directory = directory;
    }
}

public String getPrefix() {
    return prefix;
}

public void setPrefix(String prefix) {
    if (prefix == null) {
        this.prefix = DEFAULT_PREFIX; // Set to default
    } else {
        this.prefix = prefix;
    }
}

public String getSuffix() {
    return suffix;
}

public void setSuffix(String suffix) {
    if (suffix == null) {
        this.suffix = ""; // Set to empty, not default
    } else {
        this.suffix = suffix;
    }
}

public void setHourly(boolean hourly) {
    this.hourly = hourly;
}

public boolean isHourly() {
    return this.hourly;
}
}

Here is my appender XML snippet:

<appender name="PRIMARY_APPENDER" class="com.stackoverflow.log4j.DistinctDailyFileAppender">
  <param name="Threshold" value="DEBUG"/>
  <param name="Directory" value="X:\\apps\\logs\\cheese\\"/>
  <param name="Append" value="true"/>
  <param name="Hourly" value="true"/>
  <param name="Prefix" value="appname_log."/>
  <param name="Suffix" value=".txt"/>

  <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%.3t] %-14.14c{1} %m%n"/>
  </layout>
</appender>
share|improve this answer

I know its late to reply , but below solution will help you out and other user who search the same question and stuck back to this thread.

I modified DailyRollingFileAppender.java to include time interval clause in file rolling , this will allow user to set minutes interval at which rolling has to be done

include file from here http://abheygupta.com/DailyRollingFileAppender.java

and configure this way ,tim interval can have any values from 60 factors [1,2,3,4,5,6,10,12,15,20,30,60] log4j.appender.mtlog_api11.DatePattern='.'mmHHMMddyyyy log4j.appender.mtlog_api11.TimeInterval=10

it will work normal in other DatePattern than specified above .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.