aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-newrelic-example/app
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-03-15 12:02:45 -0300
committerDiego <diegolparra@gmail.com>2014-03-15 12:08:02 -0300
commitcb6efe5eae925ef3453efe76ab0b04ae0427cf9d (patch)
tree9e29e5a7b476acf068a9eff9c66c3e0cd22d5200 /kamon-examples/kamon-play-newrelic-example/app
parenta665432940038e8350801e3b99c411209c7edf93 (diff)
downloadKamon-cb6efe5eae925ef3453efe76ab0b04ae0427cf9d.tar.gz
Kamon-cb6efe5eae925ef3453efe76ab0b04ae0427cf9d.tar.bz2
Kamon-cb6efe5eae925ef3453efe76ab0b04ae0427cf9d.zip
Play NewRelic Example
Diffstat (limited to 'kamon-examples/kamon-play-newrelic-example/app')
-rw-r--r--kamon-examples/kamon-play-newrelic-example/app/controllers/NewRelicExample.scala38
1 files changed, 38 insertions, 0 deletions
diff --git a/kamon-examples/kamon-play-newrelic-example/app/controllers/NewRelicExample.scala b/kamon-examples/kamon-play-newrelic-example/app/controllers/NewRelicExample.scala
new file mode 100644
index 00000000..06c47f9b
--- /dev/null
+++ b/kamon-examples/kamon-play-newrelic-example/app/controllers/NewRelicExample.scala
@@ -0,0 +1,38 @@
+/* ===================================================
+ * Copyright © 2013-2014 the kamon project <http://kamon.io/>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ========================================================== */
+
+package controllers
+
+import play.api.mvc.{Action, Controller}
+import play.api.libs.concurrent.Execution.Implicits.defaultContext
+import scala.concurrent._
+
+object NewRelicExample extends Controller {
+
+ def sayHelloKamon() = Action.async {
+ Future {
+ play.Logger.info("Say hello to Kamon")
+ Ok("Say hello to Kamon")
+ }
+ }
+
+ def sayHelloNewRelic() = Action.async {
+ Future {
+ play.Logger.info("Say hello to NewRelic")
+ Ok("Say hello to NewRelic")
+ }
+ }
+}