jaminlai / client_java

Prometheus instrumentation library for JVM applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prometheus JVM Client

It supports Java, Clojure, Scala, JRuby, and anything else that runs on the JVM.

Using

Assets

If you use Maven, you can simply reference the assets below. The latest version can be found on in the maven repository for io.prometheus.

<!-- The client -->
<dependency>
  <groupId>io.prometheus</groupId>
  <artifactId>simpleclient</artifactId>
  <version>0.0.14</version>
</dependency>
<!-- Hotspot JVM metrics-->
<dependency>
  <groupId>io.prometheus</groupId>
  <artifactId>simpleclient_hotspot</artifactId>
  <version>0.0.14</version>
</dependency>
<!-- Exposition servlet-->
<dependency>
  <groupId>io.prometheus</groupId>
  <artifactId>simpleclient_servlet</artifactId>
  <version>0.0.14</version>
</dependency>
<!-- Pushgateway exposition-->
<dependency>
  <groupId>io.prometheus</groupId>
  <artifactId>simpleclient_pushgateway</artifactId>
  <version>0.0.14</version>
</dependency>

Getting Started

There are canonical examples defined in the class definition Javadoc of the client packages.

Documentation

The client is canonically documented with Javadoc. Running the following will produce local documentation in apidocs directories for you to read.

$ mvn package

If you use the Mavenized version of the Prometheus client, you can also instruct Maven to download the Javadoc and source artifacts.

Alternatively, you can also look at the generated Java Client Github Project Page, but the raw Javadoc in Java source in version control should be treated as the canonical form of documentation.

Maintenance of this Library

This suite is built and managed by Maven, and the artifacts are hosted on the Sonatype OSS Asset Repository.

All contributions to this library must follow, as far as practical, the prevalent patterns in the library for consistency and the following style guide: Google Java Style. Depending upon your development environment, you may be able to find an automatic formatter and adherence checker that follows these rules.

Building

$ mvn compile

Testing

$ mvn test

Please note that tests on Travis may be unreliable due to the absence of installed Maven artifacts. Ensure that the current snapshot version is deployed to Sonatype OSS Repository.

Deployment

These steps below are only useful if you are in a release engineering capacity and want to publicize these changes for external users. You will also need to have your local Maven setup correctly along with valid and public GPG key and adequate authorization on the Sonatype OSS Repository to submit new artifacts, be they staging or release ones.

You should read the Sonatype OSS Apache Maven Guide before performing any of the following:

Snapshot Deployment

$ mvn clean deploy

Staging

$ mvn release:clean release:prepare -Prelease
$ mvn release:perform -Prelease

Sonatype creates a staging repository per IP address, so turn off any loadbalancing over IP addresses before running these commands.

Release

Go to https://oss.sonatype.org/#stagingRepositories and Close the ioprometheus-XXX release. Once it's closed, Release it. Wait for the new version to appear in The Central Repository.

Send an email to the developer's mailing list announcing the release.

Documentation

Documentation can also be released to the public via the Github Pages subproduct through the magic gh-pages branch for a Github project. Documentation is generated via the following command:

$ mvn javadoc:aggregate

It will need to be automatically merged into the gh-pages branch, but that is as simple as this:

git checkout master
mvn javadoc:aggregate
git checkout gh-pages
rm -r io src-html
mv target/site/apidocs/* .
git status
# Amend the branch as necessary.
git commit
git push

There is a Maven plugin to perform this work, but it is broken. The javadoc:aggregate step will emit documentation into target/site/apidocs. The reason that we use this aggregate step instead of bare javadoc is that we want one comprehensive Javadoc emission that includes all Maven submodules versus trying to manually concatenate this together.

Output documentation lives in the Java Client Github Project Page.

Historical Note

The version of the Java client in this repository is the "Simpleclient". The previous "Original client" is deprecated, and can be found in the junkyard.

Contact

All of the core developers are accessible via the Prometheus Developers Mailinglist.

Build Status

About

Prometheus instrumentation library for JVM applications

License:Apache License 2.0


Languages

Language:Java 100.0%