aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2015-04-28 00:48:23 -0300
committerDiego <diegolparra@gmail.com>2015-04-28 00:48:23 -0300
commit72c869cc23dcf7639ab455fe0a6874cea8a9c121 (patch)
treeeb8d31d78e5314916eb598d6a2876723c86d54c4
parent93e8f424307fe0a4a679cfaaa32a3e3718f96e5b (diff)
downloadKamon-72c869cc23dcf7639ab455fe0a6874cea8a9c121.tar.gz
Kamon-72c869cc23dcf7639ab455fe0a6874cea8a9c121.tar.bz2
Kamon-72c869cc23dcf7639ab455fe0a6874cea8a9c121.zip
! system-metrics: remove unused report-system-metrics flag in the others modules
-rw-r--r--kamon-datadog/src/main/resources/reference.conf4
-rw-r--r--kamon-examples/kamon-play-example/conf/application.conf13
-rw-r--r--kamon-statsd/src/main/resources/reference.conf4
3 files changed, 1 insertions, 20 deletions
diff --git a/kamon-datadog/src/main/resources/reference.conf b/kamon-datadog/src/main/resources/reference.conf
index 82624186..ca423168 100644
--- a/kamon-datadog/src/main/resources/reference.conf
+++ b/kamon-datadog/src/main/resources/reference.conf
@@ -27,10 +27,6 @@ kamon {
http-server = [ "**" ]
}
- # Enable system metrics
- # In order to not get a ClassNotFoundException, we must register the kamon-sytem-metrics module
- report-system-metrics = false
-
# Application prefix for all metrics pushed to Datadog. The default namespacing scheme for metrics follows
# this pattern:
# application.entity-name.metric-name
diff --git a/kamon-examples/kamon-play-example/conf/application.conf b/kamon-examples/kamon-play-example/conf/application.conf
index e1b4d770..bb9838c7 100644
--- a/kamon-examples/kamon-play-example/conf/application.conf
+++ b/kamon-examples/kamon-play-example/conf/application.conf
@@ -9,14 +9,7 @@ kamon {
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 {
+ 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.
hostname = "127.0.0.1"
@@ -37,10 +30,6 @@ kamon {
dispatcher = [ "*" ]
}
- # Enable system metrics
- # In order to not get a ClassNotFoundException, we must register the kamon-sytem-metrics module
- report-system-metrics = true
-
simple-metric-key-generator {
# Application prefix for all metrics pushed to StatsD. The default namespacing scheme for metrics follows
# this pattern:
diff --git a/kamon-statsd/src/main/resources/reference.conf b/kamon-statsd/src/main/resources/reference.conf
index 67039483..955d067e 100644
--- a/kamon-statsd/src/main/resources/reference.conf
+++ b/kamon-statsd/src/main/resources/reference.conf
@@ -33,10 +33,6 @@ kamon {
http-server = [ "**" ]
}
- # Enable system metrics
- # In order to not get a ClassNotFoundException, we must register the kamon-sytem-metrics module
- report-system-metrics = false
-
# FQCN of the implementation of `kamon.statsd.MetricKeyGenerator` to be instantiated and used for assigning
# metric names. The implementation must have a single parameter constructor accepting a `com.typesafe.config.Config`.
metric-key-generator = kamon.statsd.SimpleMetricKeyGenerator