From 316a641a27a4689d00888932c0688ea899bf9735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20St=C3=A4ber?= Date: Sat, 10 Sep 2022 23:06:05 +0200 Subject: [PATCH] Update documentation for rel 0.17.1 --- MAINTAINER_NOTES.md | 4 ++-- README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MAINTAINER_NOTES.md b/MAINTAINER_NOTES.md index 9f3701ee..070108a7 100644 --- a/MAINTAINER_NOTES.md +++ b/MAINTAINER_NOTES.md @@ -11,8 +11,8 @@ Use the [Versions Maven Plugin](https://www.mojohaus.org/versions-maven-plugin/i ## Release ``` -./mvnw release:prepare -DreleaseVersion=0.17.0 -DdevelopmentVersion=0.17.1-SNAPSHOT -./mvnw release:perform -DreleaseVersion=0.17.0 -DdevelopmentVersion=0.17.1-SNAPSHOT +./mvnw release:prepare -DreleaseVersion=0.17.1 -DdevelopmentVersion=0.17.2-SNAPSHOT +./mvnw release:perform -DreleaseVersion=0.17.1 -DdevelopmentVersion=0.17.2-SNAPSHOT ``` `release:prepare` does Github tags and commits, while `release:perform` signs the artifacts and uploads them to the staging repositoring on [https://oss.sonatype.org](https://oss.sonatype.org). diff --git a/README.md b/README.md index ebef0e88..39203d89 100644 --- a/README.md +++ b/README.md @@ -14,14 +14,14 @@ Agent is thus strongly encouraged. ## Running the Java Agent The Java agent is available in two versions with identical functionality: -* [jmx_prometheus_javaagent-0.17.0.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.17.0/jmx_prometheus_javaagent-0.17.0.jar) requires Java >= 7. -* [jmx_prometheus_javaagent-0.17.0_java6.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent_java6/0.17.0/jmx_prometheus_javaagent_java6-0.17.0.jar) is compatible with Java 6. +* [jmx_prometheus_javaagent-0.17.1.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.17.1/jmx_prometheus_javaagent-0.17.1.jar) requires Java >= 7. +* [jmx_prometheus_javaagent-0.17.1_java6.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent_java6/0.17.1/jmx_prometheus_javaagent_java6-0.17.1.jar) is compatible with Java 6. Both versions are built from the same code and differ only in the versions of the bundled dependencies. To run as a Java agent, download one of the JARs and run: ``` -java -javaagent:./jmx_prometheus_javaagent-0.17.0.jar=12345:config.yaml -jar yourJar.jar +java -javaagent:./jmx_prometheus_javaagent-0.17.1.jar=12345:config.yaml -jar yourJar.jar ``` Metrics will now be accessible at [http://localhost:12345/metrics](http://localhost:12345/metrics). @@ -39,15 +39,15 @@ Example configurations can be found in the `example_configs/` directory. ## Running the Standalone HTTP Server The HTTP server is available in two versions with identical functionality: -* [jmx_prometheus_httpserver-0.17.0.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_httpserver/0.17.0/jmx_prometheus_httpserver-0.17.0.jar) requires Java >= 7. -* [jmx_prometheus_httpserver-0.17.0_java6.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_httpserver_java6/0.17.0/jmx_prometheus_httpserver_java6-0.17.0.jar) is compatible with Java 6. +* [jmx_prometheus_httpserver-0.17.1.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_httpserver/0.17.1/jmx_prometheus_httpserver-0.17.1.jar) requires Java >= 7. +* [jmx_prometheus_httpserver-0.17.1_java6.jar](https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_httpserver_java6/0.17.1/jmx_prometheus_httpserver_java6-0.17.1.jar) is compatible with Java 6. Both versions are built from the same code and differ only in the versions of the bundled dependencies. To run the standalone HTTP server, download one of the JARs and run: ``` -java -jar jmx_prometheus_httpserver-0.17.0.jar 12345 config.yaml +java -jar jmx_prometheus_httpserver-0.17.1.jar 12345 config.yaml ``` Metrics will now be accessible at [http://localhost:12345/metrics](http://localhost:12345/metrics).