diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d3782b3e..83b65fb51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changes ======= +# 0.31.0 / 2019-08-21 + +### Changes +* [IMPROVEMENT] Handle attributes that were being ignored on jasperserver. See [#243][] + # 0.30.1 / 2019-08-09 ### Changes @@ -381,6 +386,7 @@ Changes [#231]: https://github.com/DataDog/jmxfetch/issues/231 [#237]: https://github.com/DataDog/jmxfetch/issues/237 [#240]: https://github.com/DataDog/jmxfetch/issues/240 +[#243]: https://github.com/DataDog/jmxfetch/issues/243 [@alz]: https://github.com/alz [@aoking]: https://github.com/aoking [@arrawatia]: https://github.com/arrawatia diff --git a/README.md b/README.md index 0ef964711..dda3c0c13 100644 --- a/README.md +++ b/README.md @@ -56,5 +56,5 @@ mvn test # To run: ``` Get help on usage: -java -jar jmxfetch-0.30.1-jar-with-dependencies.jar --help +java -jar jmxfetch-0.31.0-jar-with-dependencies.jar --help ``` diff --git a/pom.xml b/pom.xml index 8c48e2227..d9c3fa948 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.datadoghq jmxfetch - 0.30.1 + 0.31.0 jar jmxfetch diff --git a/src/main/java/org/datadog/jmxfetch/AppConfig.java b/src/main/java/org/datadog/jmxfetch/AppConfig.java index 7817d102a..b9804a62b 100644 --- a/src/main/java/org/datadog/jmxfetch/AppConfig.java +++ b/src/main/java/org/datadog/jmxfetch/AppConfig.java @@ -180,7 +180,7 @@ public class AppConfig { @Parameter( description = - "Action to take, should be in [help, collect, " + "Action to take, should be in [help, version, collect, " + "list_everything, list_collected_attributes, list_matching_attributes, " + "list_not_matching_attributes, list_limited_attributes, list_jvms]", required = true)