petertsehsun / loglizer

Loglizer: A python toolkit for anomaly detection via log analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

loglizer

A Python toolkit for anomaly detection via log analysis

We will firstly give a brief introduction about anomaly detection, then, an overview of anomaly detection framework is described. Finally, six anomay detection methods are given, together with the code and original papers.

Paper

Our paper named "Experience Report: System Log Analysis for Anomaly Detection" have been accepted by the 27th International Symposium on Software Reliability Engineering (ISSRE 2016), Ottawa, Canada.
Here is some detailed information:
Title: Experience Report: System Log Analysis for Anomaly Detection
Authors: Shilin He, Jieming Zhu, Pinjia He, and Michael R. Lyu

Please feel free to contact us if you have any questions: slhe@cse.cuhk.edu.hk


Introduction

System logs can be utilized to detect system anomalies, which plays an important role in the maintainence of large-scale distributed systems. In this toolbox, we implenmented and released six state-of-the-art log-based anomaly detection methods, including three supervised methods and three unsupervised methods. The framework of our anomaly detection toolbox are given as following:

Overview of framework

1. Log collection: Logs are generated and collected from systems, and saved as *.log file.
2. Log Parsing: Raw Logs are parsed to log events by log parsers.
3. Feature Creation: Grouping Logs into log sequences with various windowing methods, and forme the event count vectors.
4. Anomaly Detection: Building anomaly detection model, and detecting anomalies.

In our toolbox, we mainly focus on Step 3 (Feature Creation) and Step 4 (Anomaly Detection), because raw logs are collected as our dataset, and then parsed by our log parsing tool: Logparser. In our anomaly detection toolkit, the input is the parsed log events and the output is detected anomaly instances.

Anomaly detection methods

About

Loglizer: A python toolkit for anomaly detection via log analysis

License:MIT License


Languages

Language:Python 100.0%