1. 26 Mar, 2015 4 commits
  2. 25 Mar, 2015 5 commits
  3. 24 Mar, 2015 5 commits
  4. 23 Mar, 2015 4 commits
  5. 22 Mar, 2015 1 commit
    • Marcel Overdijk's avatar
      Update doc · c0c67f25
      Marcel Overdijk authored
      Add note about escaping Spring property placeholders when using Gradle
      automatic expansion.
      
      Closes gh-2695
      c0c67f25
  6. 19 Mar, 2015 2 commits
  7. 18 Mar, 2015 2 commits
  8. 17 Mar, 2015 8 commits
  9. 16 Mar, 2015 7 commits
  10. 10 Mar, 2015 1 commit
  11. 05 Mar, 2015 1 commit
    • Andy Wilkinson's avatar
      Tolerate Gauges with non-Number values · 743482ab
      Andy Wilkinson authored
      Spring Boot's metrics infrastructure requires a Metric to have a
      Number value. Coda Hale's ThreadStatesGaugeSet includes a Gauge
      named deadlocks with a Set<String> value (each entry in the set is a
      description, including stacktrace, of a deadlocked thread). There's
      no obvious way to coerce this to a Number, and there's already a
      deadlocks.count metric in the set.
      
      This commit updates MetricRegistryMetricReader to ignore the addition
      of any Gauge with a non-Number value.
      
      Fixes gh-2593
      743482ab