aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-example/conf/application.conf
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-examples/kamon-play-example/conf/application.conf')
-rw-r--r--kamon-examples/kamon-play-example/conf/application.conf14
1 files changed, 13 insertions, 1 deletions
diff --git a/kamon-examples/kamon-play-example/conf/application.conf b/kamon-examples/kamon-play-example/conf/application.conf
index 65a834c6..8c378a22 100644
--- a/kamon-examples/kamon-play-example/conf/application.conf
+++ b/kamon-examples/kamon-play-example/conf/application.conf
@@ -4,6 +4,18 @@ akka {
}
kamon {
+
+ metrics {
+ tick-interval = 1 second
+ }
+
+ log-reporter {
+
+ # Enable system metrics
+ # In order to not get a ClassNotFoundException, we must register the kamon-sytem-metrics module
+ report-system-metrics = true
+ }
+
statsd {
# Hostname and port in which your StatsD is running. Remember that StatsD packets are sent using UDP and
# setting unreachable hosts and/or not open ports wont be warned by the Kamon, your data wont go anywhere.
@@ -33,7 +45,7 @@ kamon {
# Application prefix for all metrics pushed to StatsD. The default namespacing scheme for metrics follows
# this pattern:
# application.host.entity.entity-name.metric-name
- application = "kamon"
+ application = "activator-akka-kamon-statsd"
}
}