aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-newrelic-example/conf/application.conf
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-examples/kamon-play-newrelic-example/conf/application.conf')
-rw-r--r--kamon-examples/kamon-play-newrelic-example/conf/application.conf51
1 files changed, 51 insertions, 0 deletions
diff --git a/kamon-examples/kamon-play-newrelic-example/conf/application.conf b/kamon-examples/kamon-play-newrelic-example/conf/application.conf
new file mode 100644
index 00000000..0156d3b4
--- /dev/null
+++ b/kamon-examples/kamon-play-newrelic-example/conf/application.conf
@@ -0,0 +1,51 @@
+#kamon related configuration
+
+akka {
+ extensions = ["kamon.newrelic.NewRelic"]
+}
+
+kamon {
+
+ newrelic {
+ app-name = "KamonNewRelicExample[Development]"
+ license-key = <<Your Key>>
+ }
+
+ play {
+ include-trace-token-header = true
+ trace-token-header-name = "X-Trace-Token"
+ }
+}
+
+# This is the main configuration file for the application.
+# ~~~~~
+
+# Secret key
+# ~~~~~
+# The secret key is used to secure cryptographics functions.
+# If you deploy your application to several instances be sure to use the same key!
+application.secret="3BLM`<aD^5r/L[MinNdw8Tp@915n0djY[g66OSOLi@?k`>AZE9EOphrmf;;6JsAN"
+
+# The application languages
+# ~~~~~
+application.langs="en"
+
+# Global object class
+# ~~~~~
+# Define the Global object class for this application.
+# Default to Global in the root package.
+# application.global=Global
+
+# Logger
+# ~~~~~
+# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
+
+# Root logger:
+logger.root=ERROR
+
+# Logger used by the framework:
+logger.play=INFO
+
+# Logger provided to your application:
+logger.application=DEBUG
+