-
Notifications
You must be signed in to change notification settings - Fork 24
Usage
hughsimpson edited this page Nov 13, 2013
·
11 revisions
To use the monitoring include an output module, and at least one agent module, in your project dependencies
##Configuration Create META-INF.monitor, containing agent.conf and output.conf. Wiki pages here and here. You'll also need an aop.xml in META-INF to configure the load time weaving.
##Dependencies ###Output modules
####StatsD output for datadog
"org.eigengo.monitor" % "output-statsd" % "0.2-SNAPSHOT"
<dependency>
<groupId>org.eigengo.monitor</groupId>
<artifactId>output-statsd</artifactId>
<version>0.2-SNAPSHOT</version>
</dependency>
###Monitoring Agent modules
####Akka monitoring #####For sbt
"org.eigengo.monitor" % "agent-akka" % "0.2-SNAPSHOT"
#####For maven
<dependency>
<groupId>org.eigengo.monitor</groupId>
<artifactId>agent-akka</artifactId>
<version>0.2-SNAPSHOT</version>
</dependency>