差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

Both sides previous revision 前次修改
下次修改
前次修改
java:log4j2:appenders [2022/04/10 21:35]
tony [RollingFileAppender with Size, Time and File Count conditions]
java:log4j2:appenders [2023/06/25 09:48] (目前版本)
行 41: 行 41:
   * **appender.logfile.strategy.max**:​ 即index最大值設定。有max就會有min,min是用來指定最小index,如果你不喜歡從1-3,喜歡從2-3的話,那min就設2。   * **appender.logfile.strategy.max**:​ 即index最大值設定。有max就會有min,min是用來指定最小index,如果你不喜歡從1-3,喜歡從2-3的話,那min就設2。
 ===== RollingFileAppender with Size, Time and File Count conditions ===== ===== RollingFileAppender with Size, Time and File Count conditions =====
-這個是基於前一種RollingFileAppender多增加以時間為滾動條件的設定方式。舉例來說當到隔天的00:​00時我想產生新的log file就會用到這個條件。在log4j1時,要做到這個需求,需要引入另外一個支援TimeAndSizeRollingAppender的library;而在logj2中,則可直接透過TimeBasedTriggeringPolicy做到這個需求。除此之外,如果要做到最大檔案數量控制的話,要多使用Delete action的特性:​ +這個是基於前一種RollingFileAppender多增加以時間為滾動條件的設定方式,但由於篇幅較多直接參考[[java:log4j2:​timeandsizerollingappender|link]]內容
-<code properties>​ +
-appender.logfile.type = RollingFile +
-appender.logfile.name = LOGFILE +
-appender.logfile.fileName = ./​syslog/​log.txt +
-appender.logfile.filePattern = ./​syslog/​log.txt.%d{yyyy-MM-dd}.%i +
-appender.logfile.layout.type = PatternLayout +
-appender.logfile.layout.pattern = %d{yyyy/​MM/​dd HH:​mm:​ss.SSS} %5p[%t] (%F:%M:%L) - %m%n +
-appender.logfile.policies.type = Policies +
-appender.logfile.policies.size.type = SizeBasedTriggeringPolicy +
-appender.logfile.policies.size.size=8000KB +
-appender.logfile.policies.time.type = TimeBasedTriggeringPolicy +
-appender.logfile.policies.time.interval = 1 +
-appender.logfile.policies.time.modulate = true +
-appender.logfile.strategy.type = DefaultRolloverStrategy +
-appender.logfile.strategy.fileIndex = nomax +
-appender.logfile.strategy.action.type = Delete +
-appender.logfile.strategy.action.basepath = ./syslog/ +
-appender.logfile.strategy.action.maxDepth = 1 +
-appender.logfile.strategy.action.ifFileName.type = IfFileName +
-appender.logfile.strategy.action.ifFileName.glob = log.txt* +
-appender.logfile.strategy.action.ifFileName.type = IfFileName +
-appender.logfile.strategy.action.ifFileName.glob = log.txt* +
-appender.logfile.strategy.action.ifFileName.ifAccumulatedFileCount.type = IfAccumulatedFileCount +
-appender.logfile.strategy.action.ifFileName.ifAccumulatedFileCount.exceeds = 10 +
-</​code>​ +
-  * **appender.logfile.policies.time.type**:​ 在這使用了TimeBasedTriggeringPolicy。key中的time也是用來區別key而已,你喜歡也可以取你愛的名字。 +
-  * **appender.logfile.policies.time.interval**:​ 滾動的間隔,需與filePattern搭配。 +
-  * **appender.logfile.policies.time.modulate**:​ 簡單來說如果你間隔是以天為單位的話,設定為true它就會幫你從00:​00開始加interval;設定為false就看你程式何時執行了.. +
-  * **appender.logfile.filePattern**:​ 檔案名稱需要加上時間格式,以控制滾動規則。需與TimeBasedTriggeringPolicy的interval與modulate搭配。以範例來說,就是每天的00:​00會滾動log一次,將前一天的log.txt變為log.txt.2022-04-10.%i。 +
-  * **appender.logfile.strategy.fileIndex**:​ 這裡我就沒套用max index,檔案最大數量的控制交給了Delete Action。 +
-Delete Action的設定比較彈性,可以根據目錄規則、檔案名稱、修改時間、檔案數量等等去定義刪除條件,詳情可以參考[[https://​logging.apache.org/​log4j/​2.x/​manual/​appenders.html#​CustomDeleteOnRollover|link]]。以範例來說,我希望能做到的是:​ 確保syslog下的log.txt*檔案不超過10個,接下來說明各屬性意義:​ +
-  * **appender.logfile.strategy.action.type**:​ 設定為Delete,代表要使用Delete Action。 +
-  * **appender.logfile.strategy.action.basepath**:​ 要執行Delete動作開始掃描的路徑。 +
-  * **appender.logfile.strategy.action.maxDepth**:​ 要掃描的資料夾深度,預設值為1,在這裡我也是指定為1。 +
-  * +
  
-Note. 如果你要快速測試TimeBasedTriggeringPolicy設定檔是否正確,可以把size限制調小,並且filePattern改為以下內容,它會以每分鐘的方式去滾動,而不需要等到天:​ 
-<code properties>​ 
-appender.logfile.filePattern = ./​syslog/​log.txt.%d{yyyy-MM-dd-HH-mm}.%i 
-</​code>​ 
 ===== Reference ===== ===== Reference =====
   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​appenders.html|官方Appender設定介紹]]   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​appenders.html|官方Appender設定介紹]]
   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​layouts.html|官方Layout設定介紹]]   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​layouts.html|官方Layout設定介紹]]
-  * [[https://​www.cnblogs.com/​yeyang/​p/​7944899.html|Log4j2中RollingFile的文件滚动更新机制]] 
  
 =====    ===== =====    =====