aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-newrelic-example/app
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-06-28 11:37:00 -0300
committerDiego <diegolparra@gmail.com>2014-06-28 11:37:00 -0300
commit0279260cde60505f311aeed08b4706a4dc6fded0 (patch)
treecd494275cd47bb1ae49c229e4aa7a66eb4ea4927 /kamon-examples/kamon-play-newrelic-example/app
parent4d5803e579e223c4f4f5cb37ab79ca069a007949 (diff)
downloadKamon-0279260cde60505f311aeed08b4706a4dc6fded0.tar.gz
Kamon-0279260cde60505f311aeed08b4706a4dc6fded0.tar.bz2
Kamon-0279260cde60505f311aeed08b4706a4dc6fded0.zip
+ kamon-examples: updated play example to the latest version
Diffstat (limited to 'kamon-examples/kamon-play-newrelic-example/app')
-rw-r--r--kamon-examples/kamon-play-newrelic-example/app/controllers/NewRelicExample.scala37
1 files changed, 0 insertions, 37 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
deleted file mode 100644
index 6b89f268..00000000
--- a/kamon-examples/kamon-play-newrelic-example/app/controllers/NewRelicExample.scala
+++ /dev/null
@@ -1,37 +0,0 @@
-/* ===================================================
- * 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")
- }
- }
-}