-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
56 lines (31 loc) · 1.34 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
LogHound version 0.01 - a tool for mining frequent patterns from event logs
Introduction:
LogHound is a tool that was designed for finding frequent patterns from
event log data sets with the help of a breadth-first frequent itemset mining
algorithm.
Availability:
This program is distributed under the terms of GNU General Public License,
and can be downloaded from http://kodu.neti.ee/~risto/loghound/
Release Notes:
Has been tested on Redhat 8.0 Linux and on Solaris 8 (compiled with gcc),
but is likely to compile and work on other platforms as well.
Files in this package:
ChangeLog - change log
COPYING - copy of GNU General Public License
README - this file
loghound.1 - LogHound man page
loghound.c - LogHound program
Installation:
Compile the loghound.c file with your favourite compiler, and move the binary
and the man page to appropriate directories. With gcc, the following line
is sufficient for compiling:
gcc -o loghound -O2 loghound.c
If you wish to add support for large files over 2GB, compile with the
following options:
gcc -o loghound -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 loghound.c
Author:
Risto Vaarandi <[email protected]>
Acknowledgements:
This work is supported by the Union Bank of Estonia.
This software uses the fast and efficient Shift-Add-Xor hashing algorithm
by M.V.Ramakrishna and Justin Zobel.