Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
yannmh committed Feb 12, 2015
1 parent bd8915c commit a15a77d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
Changes
=======

# 0.4.1 / 02-11-2014
* [FEATURE/BUGFIX] Fetch more JVM (Non)Heap variables by default. See[bd8915c2f1eec794f406414b678ce6110407dce1](https://github.com/DataDog/jmxfetch/commit/bd8915c2f1eec794f406414b678ce6110407dce1)
* [BUGFIX] Memory leak fix when fetching attributes value is failing. See [#30][]

# 0.3.0 / 03-25-2014

#### Changes
* [BUGFIX] Support WARN log level, See [#14][]
+ [FEATURE] Support custom instance tags: See [#28][] (Thanks [@coupacooke][])
* [FEATURE] Support new types: Boolean, String, java.lang.Number, AtomicInteger, AtomicLong: See [#25][] [#26][] (Thanks [@coupacooke][])
* [BUGFIX] Reset statsd connection: See [#19][]
* [BUGFIX] Refresh JMX tree: See [4374b92cbf1b93d88fa5bd9d7339907e16a2da4a](https://github.com/DataDog/jmxfetch/commit/4374b92cbf1b93d88fa5bd9d7339907e16a2da4a)
* [BUGFIX] Refresh JMX tree: See [4374b92cbf1b93d88fa5bd9d7339907e16a2da4a](https://github.com/DataDog/jmxfetch/commit/4374b92cbf1b93d88fa5bd9d7339907e16a2da4a)

<!--- The following link definition list is generated by PimpMyChangelog --->
[#14]: https://github.com/DataDog/jmxfetch/issues/14
[#19]: https://github.com/DataDog/jmxfetch/issues/19
[#25]: https://github.com/DataDog/jmxfetch/issues/25
[#26]: https://github.com/DataDog/jmxfetch/issues/26
[#28]: https://github.com/DataDog/jmxfetch/issues/28
[@coupacooke]: https://github.com/coupacooke
[#30]: https://github.com/DataDog/jmxfetch/issues/30
[@coupacooke]: https://github.com/coupacooke
4 changes: 2 additions & 2 deletions src/test/java/org/datadog/jmxfetch/TestApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public void testApp() throws Exception {
assertEquals(tags.length, 5);
// The value should be a bit less than 1.0, as we incremented the counter by 5 and we slept for 5 seconds
assertTrue(value < 1.00);
assertTrue(value > 0.99);
assertTrue(value > 0.98);
counterAbsent = false;
} else if (name.equals("subattr.this.is.0")) {
assertEquals(tags.length, 5);
Expand All @@ -375,7 +375,7 @@ public void testApp() throws Exception {
assertEquals(tags.length, 5);
// The value should be a bit less than 1.0, as we incremented the counter by 5 and we slept for 5 seconds
assertTrue(value < 1.00);
assertTrue(value > 0.99);
assertTrue(value > 0.98);
subattrCounterAbsent = false;
} else if (name.equals("jmx.org.datadog.jmxfetch.test.atomic42")) {
assertEquals(tags.length, 5);
Expand Down

0 comments on commit a15a77d

Please sign in to comment.