-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathreference.conf
More file actions
44 lines (38 loc) · 1017 Bytes
/
reference.conf
File metadata and controls
44 lines (38 loc) · 1017 Bytes
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
kamon {
logstash {
address = localhost
port = 4570
appname = application
appname = ${?APPLICATION_NAME}
hostname = localhost
hostname = ${?HOSTNAME}
retry {
minBackoff = 1 second
maxBackoff = 10 seconds
randomFactor = 0.2
retryAutoReset = 3 seconds
}
# Subscription patterns used to select which metrics will be pushed to Logstash. Note that first, metrics
# collection for your desired entities must be activated under the kamon.metrics.filters settings.
subscriptions {
histogram = ["**"]
min-max-counter = ["**"]
gauge = ["**"]
counter = ["**"]
trace = ["**"]
trace-segment = ["**"]
akka-actor = ["**"]
akka-dispatcher = ["**"]
akka-router = ["**"]
system-metric = ["**"]
http-server = ["**"]
}
}
modules {
kamon-logstash {
requires-aspectj = no
auto-start = yes
extension-class = "com.codekeepersinc.kamonlogstash.KamonLogstash"
}
}
}