Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

FALCON : rotate falcon.audit.log falcon.metric.log

avatar
Rising Star

hi all,

I'm in HDP 2.4 with falcon, i don't see how to configure rotate log by day for this logs :

|-- falcon.audit.log
|-- falcon.metric.log

Any ideas ?

Thanks

1 ACCEPTED SOLUTION

avatar
Rising Star

@mayki wogno

I have tested RFA appender for Falcon logs . Please make below changes in Falcon log4j.xml .(Example - Metric logs)

     <appender name="METRIC" class="org.apache.log4j.RollingFileAppender">
        <param name="File" value="${falcon.log.dir}/${falcon.app.type}.metric.log"/>
        <param name="Append" value="true"/>
        <param name="Threshold" value="debug"/>
        <param name="MaxBackupIndex" value="10"/>
         <param name="MaxFileSize" value="2048"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d %m%n"/>
        </layout>
    </appender>

You can set MaxBackupIndex(Number of files) and MaxFileSize(Size in Bytes) as per you environment.

Also, You can set it similarly for other logs like audit logs etc.

View solution in original post

1 REPLY 1

avatar
Rising Star

@mayki wogno

I have tested RFA appender for Falcon logs . Please make below changes in Falcon log4j.xml .(Example - Metric logs)

     <appender name="METRIC" class="org.apache.log4j.RollingFileAppender">
        <param name="File" value="${falcon.log.dir}/${falcon.app.type}.metric.log"/>
        <param name="Append" value="true"/>
        <param name="Threshold" value="debug"/>
        <param name="MaxBackupIndex" value="10"/>
         <param name="MaxFileSize" value="2048"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d %m%n"/>
        </layout>
    </appender>

You can set MaxBackupIndex(Number of files) and MaxFileSize(Size in Bytes) as per you environment.

Also, You can set it similarly for other logs like audit logs etc.