logparser icon indicating copy to clipboard operation
logparser copied to clipboard

A machine learning toolkit for log parsing [ICSE'19, DSN'16]

Results 21 logparser issues
Sort by recently updated
recently updated
newest added

Spell.py: Modified re to make it compatible to python3 Fixed error: "error: bad escape \s at position 0 "

When I use 'Drain.py' for my database log(hadoop log) I found there's some bug like this.. ``` Traceback (most recent call last): File "./run_method.py", line 55, in parser.parse(os.path.basename(setting['log_file'])) File "../logparser/Drain/Drain.py",...

Drain在python3.7.4环境下运行报错, `error: bad escape \s at position 0 ` 故做一下兼容处理。

Adapted syntax to work with python 3.9

in line 346 splitter = re.sub(" +", "\s+", splitters[k]) should be changed splitter = re.sub(" +", "\\\s+", splitters[k]) add two \ before \s I don't know why? but changed it...

I'm trying the logparser as my first attempt at analyzing logs, so I'm not sure what to expect and what is the primary purpose of such log analysis tools. I...

It would be usefull to have LogMine under a more permissive licence. I could open a PR to modify the replace the existing code under GPL (`alignment.py`) and have the...

I think there is a small typo in the code. The preprocess function should iterate over the elements (regex) in the specialRegex array and process the logline with each regex...

PR for https://github.com/logpai/logparser/issues/125 Improvements from the previous version of the ```alignment.py```: - improved readability of the code - removed global variables (match_award, mismatch_penalty, gap_penalty) - introduced reference to algorithm -...