As described in the readme, I have setup Play Framework 2.1.4 (was originally on 2.1.5 but downgraded) on Windows 7:
In plugins.sbt:
addSbtPlugin("com.typesafe.sbt" % "sbt-atmos-play" % "0.3.2")
In build.scala:
val appDependencies = Seq( "com.typesafe.atmos" % "trace-play-2.1.4" % "1.3.1")
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(atmosPlaySettings: _*)
play atmos-run
The server starts up normally, however I get the following warnings:
[WARN] [01/02/2014 17:27:53.538] [atmos-atmos-trace-dispatcher-7] [akka://atmos/user/2_SystemMetricsMonitor] Couldn't monitor [systemLoadAverage]. Due to [This method has not been implemented on this platform]
[WARN] [01/02/2014 17:27:54.065] [atmos-atmos-trace-dispatcher-7] [akka://atmos/user/2_SystemMetricsMonitor] Couldn't monitor [loadAverage]. Due to [This method has not been implemented on this platform]
Furthermore, when I go to the console (http://localhost:9900/#akka/details), none of the monitors are listening (0 or N/A for everything, 0 actors, etc).
Hello,
As described in the readme, I have setup Play Framework 2.1.4 (was originally on 2.1.5 but downgraded) on Windows 7:
In plugins.sbt: addSbtPlugin("com.typesafe.sbt" % "sbt-atmos-play" % "0.3.2")
In build.scala: val appDependencies = Seq( "com.typesafe.atmos" % "trace-play-2.1.4" % "1.3.1") val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(atmosPlaySettings: _*)
play atmos-run
The server starts up normally, however I get the following warnings: [WARN] [01/02/2014 17:27:53.538] [atmos-atmos-trace-dispatcher-7] [akka://atmos/user/2_SystemMetricsMonitor] Couldn't monitor [systemLoadAverage]. Due to [This method has not been implemented on this platform] [WARN] [01/02/2014 17:27:54.065] [atmos-atmos-trace-dispatcher-7] [akka://atmos/user/2_SystemMetricsMonitor] Couldn't monitor [loadAverage]. Due to [This method has not been implemented on this platform]
Furthermore, when I go to the console (http://localhost:9900/#akka/details), none of the monitors are listening (0 or N/A for everything, 0 actors, etc).
Is there anything I'm missing? Thanks in advance!