spring-operator / micrometer

An application metrics facade for the most popular monitoring tools. Think SLF4J, but for metrics.

Home Page:http://micrometer.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Micrometer Application Metrics

Build Status Apache 2.0 Maven Central Javadocs

An application metrics facade for the most popular monitoring tools. Instrument your code with dimensional metrics with a vendor neutral interface and decide on the monitoring backend at the last minute.

More info and the user manual are available on micrometer.io.

Micrometer is the instrumentation library underpinning Spring Boot 2.0's metrics collection.

Join the discussion

Join the Micrometer Slack to share your questions, concerns, and feature requests.

Snapshot builds

Snapshots are published to repo.spring.io for every successful build on the master branch.

To use:

repositories {
    maven { url 'https://repo.spring.io/libs-snapshot' }
}

dependencies {
    compile 'io.micrometer:micrometer-core:latest.integration'
}

Building Locally

Run ./gradlew clean pTML to publish a Maven-style snapshot to your Maven local repo. To consume:

repositories {
    mavenLocal()
}

dependencies {
    compile 'io.micrometer:micrometer-core:latest.integration'
}

The build automatically calculates the "next" version for you when publishing snapshots.


Licensed under Apache Software License 2.0

Sponsored by Pivotal

About

An application metrics facade for the most popular monitoring tools. Think SLF4J, but for metrics.

http://micrometer.io

License:Apache License 2.0


Languages

Language:Java 99.7%Language:Shell 0.3%