This is the conf I am using at the moment:
<RollingFile name="RollingFileAppender"
fileName="/tmp/test.log" filePattern="/tmp/test-%i.log.gz" ignoreExceptions="false">
<PatternLayout pattern="%m%n" />
<Policies>
<SizeBasedTriggeringPolicy size="100 MB" />
</Policies>
<DefaultRolloverStrategy max="5" />
</RollingFile>
Notice the '.gz' extension that make log4j2 compress the rotated log files.
I would like to keep 5 files uncompressed and start compressing only after that. Is there a way to start the compression after N rotations?