You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-1Lines changed: 23 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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.
0 commit comments