kamon を使用して、 docker-grafana-graphiteで自分の scala akka アプリを監視しようとしています。Kamon ダッシュボードでアクターの統計を確認できますが、システム ダッシュボード (JVM & OS) でデータを確認できません
これが私のbuild.sbtファイルです:
import com.typesafe.sbt.SbtAspectj._
name := """kinneret"""
scalaVersion := "2.11.6"
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
val akkaVersion = "2.3.9"
val kamonVersion = "0.3.4"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"io.kamon" %% "kamon-core" % kamonVersion,
"io.kamon" %% "kamon-statsd" % kamonVersion,
"io.kamon" %% "kamon-play" % kamonVersion,
"io.kamon" %% "kamon-log-reporter" % kamonVersion,
"io.kamon" %% "kamon-system-metrics" % kamonVersion,
"org.aspectj" % "aspectjweaver" % "1.8.1"
)
aspectjSettings
javaOptions <++= AspectjKeys.weaverOptions in Aspectj
fork in run := true
これは私の構成ファイルです:
akka {
loglevel = INFO
extensions = ["kamon.metric.Metrics", "kamon.statsd.StatsD", "kamon.system.SystemMetrics", "kamon.logreporter.LogReporter"]
}
# Kamon Metrics
# ~~~~~~~~~~~~~~
kamon {
metrics {
filters = [
{
actor {
includes = [ "*"]
excludes = []
}
},
{
trace {
includes = [ "*" ]
excludes = []
}
}
]
}
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
statsd {
# Hostname and port in which your StatsD is running. Remember that StatsD 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 = "192.168.59.103"
port = 8125
# Interval between metrics data flushes to StatsD. 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 StatsD.
max-packet-size = 1024 bytes
# Subscription patterns used to select which metrics will be pushed to StatsD. Note that first, metrics
# collection for your desired entities must be activated under the kamon.metrics.filters settings.
includes {
actor = [ "*" ]
trace = [ "*" ]
dispatcher = [ "*" ]
}
simple-metric-key-generator {
# Application prefix for all metrics pushed to StatsD. The default namespacing scheme for metrics follows
# this pattern:
# application.host.entity.entity-name.metric-name
application = "kinneret"
}
}
}
私は Mac(Yosemite) を使用しており、boot2docker を使用して docker を実行しています。boot2docker の IP は 192.168.59.103 です。
Docker ダッシュボードで OS と JVM の統計を表示するには、何を追加する必要がありますか?
ありがとう。