Atlassian documentation offers some very light information, but I was hoping there might be a more robust guide to interpreting the information in all of the logs somewhere out there.
There's two main log files for a JIRA - the catalina.out is the application server (tomcat) log file, and there's some stuff over at https://tomcat.apache.org/tomcat-7.0-doc/logging.html - again, it's more about general config and changing it, but it's a start on understanding the file.
The other one is the atlassian-jira.log - this is probably the one you're more interested in. It's in a pretty standard format and basically captures everything if there's a hint of something going wrong. It is, however, a java log, which is aimed at developers and can be very unfriendly to read.
I'm not sure that there's much a "guide" can tell you though. Some of it is intuitive, you can see dates and times, users etc. When there's a fault or crash, you'll mostly see an "exception" of some sort, which are followed by a stack trace of hundreds of lines of file names and numbers (these really are hardcore dev messages - it's actually the line of source code in that file it is telling us! So it's useless unless you have the source code). You'll see batches of informational lines prefixed with warn or info, and then whatever messages the developers have chosen to output in their code. That's what we can't write a guide for - each class could be doing anything at all, and we need the authors to code to spit out the messages we want!
I've found http://www.loggly.com/ultimate-guide/troubleshooting-with-java-logs/ helped me get my brain around it last time I was stuck, but obviously, that's not a JIRA guide.
Personally, I prefer to sling the logs through a log analyser or monitor - something that can look for patterns (e.g. lots of import related errors at 3am every day) and/or simplify the raw output to something more human. Even better, I have the option of asking colleagues for help reading them!
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Since I posted this, mostly within the last few months, I've spent a lot of time in the logs, and I can tell you that a guide, or at least a breakdown of the sections would definitely have been useful.
There's an assumption that people looking at these logs have a certain base level of expertise with various things. That's not always the case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, that's why I throw them through log analysers to be honest.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not an option :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What log analysers do you recommend? I've been out of the 'support' game for a few years but now am back in it and I'd like something better than Notepad++ to go through the various Jira logfiles and copious amounts of loglines in each :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Robert Horan,
Please refer following guide to know more about JIRA logs,
https://confluence.atlassian.com/jira/where-are-the-application-server-logs-16121981.html
https://confluence.atlassian.com/adminjiraserver072/logging-and-profiling-828788077.html
Most important logs are,
1. atlassian-jira.log (see Logging and Profiling)
2. application server log...logs/catalina.out
in your JIRA Installation Directory
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks - while those give information on where to find the logs, there isn't a lot of information on how to interpret the information in the logs.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Me too! I use 'access-log-analyser-2.0.1.jar' and all the time it returns this parsing error :(
Any idea?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.