lognalyst is a LOG file analyzer with multithreading logic.
Currently only plain-text LOG files are supported. It is expected that the provided LOG file has the following format (per line):
- Timestamp in ISO format:
The timestamp must be provided as two parts: the date and the hour the log message was created. The date should be provided asYYYY-MM-DDand the hour should be logged asHH:mm:ss. Both fields should be separated by a space. For example,2024-03-12 14:23:45is a correct timestamp. - Logging category
Either INFO, ERROR or any other category defining what the message corresponds to. - Log message
The full message that was communicated to the LOG file.