Git Product home page Git Product logo

metrics-scala's Introduction

Metrics-Scala

Capturing JVM- and application-level metrics. So you know what's going on.

This is the Scala API for Dropwizard's Metrics library.

Initially this project started out as a line for line copy of the Metrics-scala module, released for multiple scala versions. Metrics dropped the scala module in version 3.0.0 and this project continued separately with the help of @scullxbones.

Contents

Usage

Metrics-scala provides an easy way to create metrics and health checks in Scala. Metrics-core requires an application wide MetricRegistry. Create an Instrumented trait that refers to that registry and extends the InstrumentedBuilder trait.

object YourApplication {
  /** The application wide metrics registry. */
  val metricRegistry = new com.codahale.metrics.MetricRegistry()
}
trait Instrumented extends nl.grons.metrics.scala.InstrumentedBuilder {
  val metricRegistry = YourApplication.metricRegistry
}

Now you can create metrics by using the metrics metrics builder.

class Example(db: Database) extends Instrumented {
  private[this] val loading = metrics.timer("loading")

  def loadStuff(): Seq[Row] = loading.time {
    db.fetchRows()
  }
}

For more detailed information see the manual. For more information on Metrics-core 3.x, please see the documentation.

See the change log for API changes compared to the 2.x versions.

Features

  • Easy creation of all metrics types.
  • Easy creation of Health Checks.
  • Almost invisible syntax for using timers (see example above).
  • Scala specific methods on metrics (e.g. += on counters).
  • Derives proper metrics names for Scala objects and closures.
  • Actor support.
  • Future support.
  • Hdrhistogram support.

Available versions (abbreviated)

This table shows the most relevant versions of metrics-scala. For the full list, including the Scala 2.9 versions, see all available versions.

Metrics-
scala
version
Metrics-
core
version
Akka
version
Scala version Hdr
version (*)
2.10 2.11
2.1.5 2.1.5
3.5.1 3.1.2 1.1.0
3.5.1_a2.1 3.1.2 2.1.4 1.1.0
3.5.1_a2.2 3.1.2 2.2.5 1.1.0
3.5.1_a2.3 3.1.2 2.3.11 1.1.0

If you need another version mix please open an issue, or sent an email to the metrics mailing list.

Note: If Akka or hdrhistogram has a newer minor-version, you can use that instead of the version metrics-scala was build against.

(*) Hdrhistogram is an optional dependency.

Download

SBT:

libraryDependencies += "nl.grons" %% "metrics-scala" % "3.5.1_a2.3"

Maven:

<properties>
    <scala.version>2.11.0</scala.version>
    <scala.dep.version>2.11</scala.dep.version>
</properties>
<dependency>
    <groupId>nl.grons</groupId>
    <artifactId>metrics-scala_${scala.dep.version}</artifactId>
    <version>3.5.1_a2.3</version>
</dependency>

To use hdrhistogram additional dependencies are needed. See the hdrhistogram manual page.

Support

If you find a bug, please open an issue, better yet: send a pull request. For questions, please sent an email to the metrics mailing list.

License

Copyright (c) 2010-2012 Coda Hale, Yammer.com (before 3.0.0)

Copyright (c) 2013-2015 Erik van Oosten (3.0.0 and later)

Published under Apache Software License 2.0, see LICENSE

metrics-scala's People

Contributors

cb372 avatar cburroughs avatar ccare avatar chids avatar codahale avatar collinvandyck avatar dinomite avatar dorzey avatar erikvanoosten avatar flicken avatar gseitz avatar gshakhn avatar jaimeagudo avatar jasonberanek avatar javasoze avatar jebl01 avatar jmhodges avatar kevinclark avatar konnik avatar neilprosser avatar nicktelford avatar oconnor0 avatar organicveggie avatar realbot avatar robbywalker avatar ryantenney avatar scullxbones avatar stevenschlansker avatar tobli avatar waywardmonkeys avatar

Watchers

 avatar  avatar

Forkers

andrew8305

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.