aboutsummaryrefslogtreecommitdiff
path: root/kamon-datadog/src/main/resources
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-04-30 17:10:46 -0300
committerDiego <diegolparra@gmail.com>2014-05-12 19:40:48 -0300
commit70ff2bb8d9c3c929e05d6c40ab34f69d5404b074 (patch)
tree2c4bd9616a78f753fda1beaad4da7caeb5ef1241 /kamon-datadog/src/main/resources
parentb758b4dd9146565bf827af70e755e9cd00c52ad0 (diff)
downloadKamon-70ff2bb8d9c3c929e05d6c40ab34f69d5404b074.tar.gz
Kamon-70ff2bb8d9c3c929e05d6c40ab34f69d5404b074.tar.bz2
Kamon-70ff2bb8d9c3c929e05d6c40ab34f69d5404b074.zip
! datadog: first commit of datadog integration module
Diffstat (limited to 'kamon-datadog/src/main/resources')
-rw-r--r--kamon-datadog/src/main/resources/reference.conf33
1 files changed, 33 insertions, 0 deletions
diff --git a/kamon-datadog/src/main/resources/reference.conf b/kamon-datadog/src/main/resources/reference.conf
new file mode 100644
index 00000000..5aaa87fc
--- /dev/null
+++ b/kamon-datadog/src/main/resources/reference.conf
@@ -0,0 +1,33 @@
+# ==================================== #
+# Kamon-Datadog Reference Configuration #
+# ==================================== #
+
+kamon {
+ datadog {
+ # Hostname and port in which your Datadog is running. Remember that Datadog 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"
+ port = 8125
+
+ # Interval between metrics data flushes to Datadog. It's value must be equal or greater than the
+ # kamon.metrics.tick-interval setting.
+ flush-interval = 1 second
+
+ # Max packet size for UDP metrics data sent to Datadog.
+ max-packet-size = 1024 bytes
+
+ # Subscription patterns used to select which metrics will be pushed to Datadog. Note that first, metrics
+ # collection for your desired entities must be activated under the kamon.metrics.filters settings.
+ includes {
+ actor = [ "*" ]
+ trace = [ "*" ]
+ }
+
+ simple-metric-key-generator {
+ # Application prefix for all metrics pushed to Datadog. The default namespacing scheme for metrics follows
+ # this pattern:
+ # application.host.entity.entity-name.metric-name
+ application = "kamon"
+ }
+ }
+}