-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollector.config
56 lines (47 loc) · 1 KB
/
collector.config
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
collector {
interface = "0.0.0.0"
port = 9292
streams {
good = "collector-good"
bad = "collector-bad"
sink {
enabled = google-pub-sub
googleProjectId = "<gcp-project-id>"
backoffPolicy {
minBackoff = 1000
maxBackoff = 1000
totalBackoff = 9223372036854
multiplier = 2
initialRpcTimeout = 10000
maxRpcTimeout = 10000
rpcTimeoutMultiplier = 2
}
}
buffer {
byteLimit = 100000
recordLimit = 40
timeLimit = 1000
}
}
telemetry {
disable = true
}
# TODO: enable this if we need metrics
monitoring.metrics.statsd {
enabled = true
hostname = localhost
port = 8125
period = "10 seconds"
# "prefix": "snowplow.collector"
}
preTerminationPeriod = 10 seconds
preTerminationUnhealthy = true
terminationDeadline = 10 seconds
}
akka {
loglevel = DEBUG
loggers = ["akka.event.slf4j.Slf4jLogger"]
http.server {
max-connections = 2048
}
}