The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Till what time jira maintains the log information?

Alok Singh
Contributor
May 28, 2015

How much previous details does JIRA maintain inside the log files?

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Paulo Hennig
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 28, 2015

Hello Alok, in additional to Shayne response,

The logs created by JIRA are rotated when they reach 20MB. 

This other answer has good guides and an example to delete log files older than 30days using cron.

0 votes
Shayne _Atlassian_
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 28, 2015

The logging is configured to roll over based on file size and can be modified in the JIRA-INSTALL/atlassian-jira/WEB-INF/classes/log4j.properties file:

log4j.appender.filelog=com.atlassian.jira.logging.JiraHomeAppender
log4j.appender.filelog.File=atlassian-jira.log
log4j.appender.filelog.MaxFileSize=20480KB
log4j.appender.filelog.MaxBackupIndex=5

You can find more information on that in the Logging and Profiling documentation.

Our knowledge base article for How to Rotate Catalina Log File may be useful, also. smile