Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: ./mvnw clean package -DskipTests

- name: Run using JDK 7
run: docker run -i --rm -v $(pwd):/app -w /app azul/zulu-openjdk:7-latest java -jar ./target/jmxfetch-0.51.1-SNAPSHOT-jar-with-dependencies.jar --help
run: docker run -i --rm -v $(pwd):/app -w /app azul/zulu-openjdk:7-latest java -jar ./target/jmxfetch-0.52.0-jar-with-dependencies.jar --help

test:
name: Test (OpenJDK ${{ matrix.java-version }})
Expand Down
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========
# 0.51.1 / TBC
# 0.52.0 / 2026-04-13
* [FEATURE] Add `key_property` support for `dynamic_tags` to extract tag values from JMX bean name key properties [#601][]
* [FEATURE] Add JMX metrics mappings for Generational Shenandoah GC [#596][] (Thanks [@krrg][])
* [IMPROVEMENT] Add `use_canonical_bean_name` config option to guarantee consistent key property ordering in bean names [#597][]
* [IMPROVEMENT] Automatically use `snakeyaml-engine` on Java 8+ with fallback to legacy `snakeyaml` on Java 7 [#585][]

# 0.51.0 / 2025-10-28
- [FEATURE] Add configuration-level dynamic tags for JMX attribute values via `dynamic_tags` [#581][]
Expand Down Expand Up @@ -815,6 +819,10 @@ Changelog
[#572]: https://github.com/DataDog/jmxfetch/issues/572
[#574]: https://github.com/DataDog/jmxfetch/issues/574
[#581]: https://github.com/DataDog/jmxfetch/pull/581
[#585]: https://github.com/DataDog/jmxfetch/issues/585
[#596]: https://github.com/DataDog/jmxfetch/issues/596
[#597]: https://github.com/DataDog/jmxfetch/issues/597
[#601]: https://github.com/DataDog/jmxfetch/pull/601
[@alz]: https://github.com/alz
[@aoking]: https://github.com/aoking
[@arrawatia]: https://github.com/arrawatia
Expand All @@ -824,4 +832,5 @@ Changelog
[@cslee00]: https://github.com/cslee00
[@mattdrees]: https://github.com/mattdrees
[@nwillems]: https://github.com/nwillems
[@ygree]: https://github.com/ygree
[@ygree]: https://github.com/ygree
[@krrg]: https://github.com/krrg
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ otherwise the subsequent publishes will fail.

```
Get help on usage:
java -jar jmxfetch-0.51.1-SNAPSHOT-jar-with-dependencies.jar --help
java -jar jmxfetch-0.52.0-jar-with-dependencies.jar --help
```

## Updating Maven Wrapper
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.datadoghq</groupId>
<artifactId>jmxfetch</artifactId>
<version>0.51.1-SNAPSHOT</version>
<version>0.52.0</version>
<packaging>jar</packaging>

<name>jmxfetch</name>
Expand Down
Loading