Skip to content
hughsimpson edited this page Nov 8, 2013 · 11 revisions

To use the monitoring, include an output module and at least one agent module in your project dependencies for the modules you wish to monitor

##Dependencies ###Output modules

####StatsD output for datadog

For sbt
  "org.eigengo.monitor" % "output-statsd" % "0.1-SNAPSHOT"
For maven
        <dependency>
            <groupId>org.eigengo.monitor</groupId>
            <artifactId>output-statsd</artifactId>
            <version>0.1-SNAPSHOT</version>
        </dependency>

###Monitoring Agent modules

####Akka monitoring #####For sbt

  "org.eigengo.monitor" % "agent-akka" % "0.1-SNAPSHOT"

#####For maven

        <dependency>
            <groupId>org.eigengo.monitor</groupId>
            <artifactId>agent-akka</artifactId>
            <version>0.1-SNAPSHOT</version>
        </dependency>

##Configuration create ...

Clone this wiki locally