Log4j pattern of my application [%d{ISO8601}][%-5p][%c{1}]: %m%n is not recognized by the Insight Tool.Can you please look into the issue ?Apart from that the tool works great!
Insight uses java.text.SimpleDateFormat to parse dates. Since SimpleDateFormat does not accept ISO8601 as a pattern string, you will have to change the format a bit when entering it in Insight preferences. For example, you could use the format:
[%d{yyyy-MM-dd'T'HH:mm:ssz}][%-5p][%c{1}]: %m%n
You do not have to change your log4j configuration, just the Insight preferences when arsing the log.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Insight Error document
Insight uses java.text.SimpleDateFormat to parse dates. Since SimpleDateFormat does not accept ISO8601 as a pattern string, you will have to change the format a bit when entering it in Insight preferences. For example, you could use the format:
[%d{yyyy-MM-dd'T'HH:mm:ssz}][%-5p][%c{1}]: %m%n
You do not have to change your log4j configuration, just the Insight preferences when arsing the log.