Mackerel Integration

Build Status Maven Central

Reporting Metrics to Mackerel

Mackerel is an online visualization and monitoring service for servers.

Getting Started

Supported releases and dependencies are shown below.

kamon-mackerel status jdk scala
0.1.0 stable 1.8+ 2.12

To get started with SBT, simply add the following to your build.sbt file:

libraryDependencies += "com.github.yoshiyoshifujii" %% "kamon-mackerel" % "0.1.0"

And add the API reporter to Kamon:

Kamon.addReporter(new MackerelAPIReporter())

Configuration

kamon {
  mackerel {

    #
    # Settings relevant to the MackerelAPIReporter
    #
    http {

      # Mackerel API key to use to send metrics to mackerel directly over HTTPS.
      api-key = ""
    }

    host {
      id = ""
    }

  }
}