-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextractor.ini
More file actions
59 lines (49 loc) · 1.16 KB
/
extractor.ini
File metadata and controls
59 lines (49 loc) · 1.16 KB
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
57
58
59
# karton config
[logging]
#level = DEBUG
[minio]
access_key = karton-test-access
secret_key = karton-test-key
address = localhost:9000
bucket = karton
secure = 0
[redis]
host=localhost
port=6379
# our config
# used by multiple components
[extractor]
#use_deduper = True
#use_cache = True
#reports_key = extractor.reports
#job_cache_key = extractor.cache:
#correlator_reports_identity = extractor.correlator-for-job-
# used by peekaboo components
# BTW: Section names cannot contain separators based on the way Karton maps
# environment variables onto them. Because they're case-sensitive and Karton
# lower-cases their names in env var mapping, we can't even use camelCase or
# similar for readability.
[extractorpeekaboo]
#url = http://127.0.0.1:8100
#backoff = 0.5
#retries = 5
# individual components
[extractorpeekabootracker]
#job_age_cutoff = 600
[extractorcacheresponder]
#age_out_interval = 60
#max_age = 240
[extractordeduper]
#running_key = extractor.running
#recheck_interval = 2
#cutoff = 60
# 2*cutoff
#gc_interval = 120
[extractorpoker]
#jobs_key = extractor.jobs
#recheck_cutoff = 60
#poking_delay = 3
#timeout = 1
[extractorapi]
#host = 127.0.0.1
#port = 8200