/prometheus-hystrix

This is an implementation of a HystrixMetricsPublisher that publishes metrics using the Prometheus java client.

Primary LanguageJavaApache License 2.0Apache-2.0

prometheus-hystrix-metrics-publisher

This is an implementation of a HystrixMetricsPublisher that publishes metrics using Prometheus' SimpleClient.

prometheus hystrix prometheus hystrix

See the Netflix Metrics & Monitoring Wiki for more information.

This continues the work started at SoundCloud. The roadmap is the following:

To use this library you can use Java 6, 7 or 8. Later versions should work, but have not been tested yet - please create it ticket if you experience problems.

Continuous integration tests run on Java 7 and 8 only as Java 6 doesn’t seem to be available any more on TravisCI.

USAGE

Include the most recent release from Maven Central in your build configuration.

<dependency>
    <groupId>de.ahus1.prometheus.hystrix</groupId>
    <artifactId>prometheus-hystrix</artifactId>
    <version>3.x.x</version>
</dependency>

Register the metrics publisher for your application’s namespace and the default Prometheus CollectorRegistry with Hystrix.

import com.soundcloud.prometheus.hystrix.HystrixPrometheusMetricsPublisher;

// ...

HystrixPrometheusMetricsPublisher.register("application_name");

Register the publisher for your application’s namespace with your own Prometheus CollectorRegistry with Hystrix.

import com.soundcloud.prometheus.hystrix.HystrixPrometheusMetricsPublisher;
import io.prometheus.client.CollectorRegistry;

// ...

CollectorRegistry registry = // ...
HystrixPrometheusMetricsPublisher.register("application_name", registry);

DEVELOPMENT

Run ./mvnw package to compile, test and JARs locally.

The most recent development version (based on the master branch on GitHub) is available from the Sonatype OSS Snapshot Repository. To use it, include the following repository in your pom.xml.

<repositories>
    <repository>
        <id>snapshots-repo</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases><enabled>false</enabled></releases>
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
</repositories>

LICENSE

Copyright 2014-2017 SoundCloud, Inc., Alexander Schwartz and Authors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.