packages feed

ekg-carbon 1.0.4 → 1.0.5

raw patch · 3 files changed

+12/−8 lines, 3 filesdep ~vector

Dependency ranges changed: vector

Files

Changelog.md view
@@ -1,3 +1,9 @@+## 1.0.5++* Increased upper-bounds of:++      * `vector`+ ## 1.0.4  * Added `forkCarbonRestart`, which allows caller's to have a little more control over what happens when the Carbon thread crashes.
ekg-carbon.cabal view
@@ -1,5 +1,5 @@ name: ekg-carbon-version: 1.0.4+version: 1.0.5 synopsis: An EKG backend to send statistics to Carbon (part of Graphite monitoring tools) homepage: http://github.com/ocharles/ekg-carbon license: BSD3@@ -22,7 +22,7 @@     text >= 0.10 && < 1.3,     time >= 1.4 && < 1.6,     unordered-containers,-    vector >= 0.10 && < 0.11+    vector >= 0.10 && < 0.12    hs-source-dirs: src   default-language: Haskell2010
src/System/Remote/Monitoring/Carbon.hs view
@@ -100,12 +100,10 @@ -- For example, you can use 'forkCarbonRestart' to log failures and restart -- logging: ----- @--- 'forkCarbonRestart' opts---                     store---                     (\ex restart -> do hPutStrLn stderr ("ekg-carbon: " ++ show ex)---                                        restart)--- @+-- > forkCarbonRestart defaultCarbonOptions+-- >                   store+-- >                   (\ex restart -> do hPutStrLn stderr ("ekg-carbon: " ++ show ex)+-- >                                      restart) forkCarbonRestart :: CarbonOptions                   -> EKG.Store                   -> (SomeException -> IO () -> IO ())