File: content_analysis.cfg

package info (click to toggle)
httpry 0.1.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: ansic: 1,358; perl: 1,336; sh: 155; makefile: 62
file content (49 lines) | stat: -rw-r--r-- 1,211 bytes parent folder | download | duplicates (6)
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
#
# Config file for content_analysis.pm
#
# $terms_file (required)
#    A text file containing a list of whitespace
#    delimited keywords to search for
#
# $output_dir (not required)
#    Specify a directory to write client detail
#    files. If not specified, defaults to current
#    directory
#
# $output_file (required)
#    A valid path to write an output file
#    containing the collected summary data.
#
# $file_prefix (not required)
#    A string that will be prepended to all
#    output flow files.
#
# $cluster_flows (required)
#    Toggle the clustering of scored flows, which
#    tries to auto-select high scoring flows
#    versus outputting all scored flows.
#
# $window_size (required)
#    Specify the number of lines used for context
#    around lines containing flagged terms.
#
# $score_threshold (required)
#    Flows with a score below this value will be
#    ignored.
#
# $terms_threshold (required)
#    Flows with a term count below this value will
#    be ignored.
#

$terms_file      = "";
$output_dir      = "";
$output_file     = "content_analysis.txt";
$file_prefix     = "flows_";

$cluster_flows   = 1;
$window_size     = 60;
$score_threshold = 10;
$terms_threshold = 5;

1;