ekg 0.4.0.10 → 0.4.0.11
raw patch · 4 files changed
+20/−3 lines, 4 filesdep ~aesonPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson
API changes (from Hackage documentation)
Files
- CHANGES.md +4/−0
- README.md +13/−0
- System/Remote/Monitoring.hs +1/−1
- ekg.cabal +2/−2
CHANGES.md view
@@ -1,3 +1,7 @@+## 0.4.0.11 (2016-09-14)++ * Support aeson 1.0.+ ## 0.4.0.10 (2016-05-28) * GHC 8.0 support.
README.md view
@@ -18,6 +18,19 @@ and then visit [http://localhost:8000/](http://localhost:8000/) in your web browser. +To make full use out of this module you must first enable GC+statistics collection in the run-time system. To enable GC+statistics collection, either run your program with++> +RTS -T++or compile it with++> -with-rtsopts=-T++The runtime overhead of `-T` is very small so it's safe to always+leave it enabled.+ # JSON API The monitoring server also lets you to retrieve the stats as JSON.
System/Remote/Monitoring.hs view
@@ -67,7 +67,7 @@ -- $configuration ----- To make full use out of this this module you must first enable GC+-- To make full use out of this module you must first enable GC -- statistics collection in the run-time system. To enable GC -- statistics collection, either run your program with --
ekg.cabal view
@@ -1,5 +1,5 @@ name: ekg-version: 0.4.0.10+version: 0.4.0.11 synopsis: Remote monitoring of processes description: This library lets you remotely monitor a running process over HTTP.@@ -38,7 +38,7 @@ System.Remote.Snap build-depends:- aeson < 0.12,+ aeson < 1.1, base >= 4.5 && < 4.10, bytestring < 1.0, ekg-core >= 0.1 && < 0.2,