Skip to content

Commit f07cc3c

Browse files
author
Zhuge Chen
committed
201705162141
1 parent aa6fd4c commit f07cc3c

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
1+
# C-based Implementation of LogCluster Algorithm
2+
3+
Compiling Environment: Linux
4+
5+
**How to manually compile the source files:**
6+
In terminal, change directory to this folder and execute "gcc -O2 -o logclusterc *.c" command. The executable file named "logclusterc" then will be generated.
7+
8+
LogCluster is a density-based data clustering algorithm for event logs, introduced by Risto Vaarandi and Mauno Pihelgas in 2015.
9+
10+
A detialed discussion of the LogCluster algorithm can be found in the paper (http://ristov.github.io/publications/cnsm15-logcluster-web.pdf) published at CNSM 2015.
11+
12+
The C-based implementation of LogCluster algorithm is called LogClusterC.
13+
14+
LogClusterC borrows lots of source code from another open source data mining tool SLCT: http://ristov.github.io/slct/ .
15+
16+
The information of LogCluster algorithm and its prototype implementation in Perl: http://ristov.github.io/logcluster/ .
17+
18+
The history versions of LogCluster in Perl: https://github.com/ristov/logcluster/releases .
19+
20+
All the functions in LogCluster Perl version 0.03 are supported in LogClusterC. The basic functions and heuristics functions (options: --input, --rsupport,
21+
--support, --aggrsup, --wweight) are tested via various experiments in thesis.
22+
123
# 基于文字密度的文本数据挖掘工具
224

325
运行环境:Linux
426

5-
如何编译:下载源文件后,命令行输入 gcc -O2 -o logclusterc *.c
27+
**如何编译:**下载源文件后,命令行输入 gcc -O2 -o logclusterc *.c
628

729
此工具基于Risto Vaarandi和Mauno Pihelgas发明的LogCluster算法,这是一个基于文本密度的数据挖掘算法,主要应用于大规模日志的模式分析。
830

0 commit comments

Comments
 (0)