A metrics library for PureScript
Přejít na soubor
Abhinav Sarkar e94e6c745f Adds documentation and README 2017-11-20 17:06:31 +05:30
src/System Adds documentation and README 2017-11-20 17:06:31 +05:30
.gitignore Initial commit 2017-11-15 18:00:34 +05:30
LICENSE Adds LICENSE 2017-11-20 15:32:01 +05:30
README.md Adds documentation and README 2017-11-20 17:06:31 +05:30
bower.json Adds LICENSE 2017-11-20 15:32:01 +05:30

README.md

purescript-metrics

A metrics library for PureScript inspired by the Haskell library ekg. It is a wrapper upon the JavaScript metrics library which itself is a port of the Java Dropwizard metrics library.

API documentation can be found in Pursuit.

Sample Usage

main = do
  store <- newStore
  counter <- createOrGetCounter "counter" store
  gauge <- createOrGetGauge "gauge" (pure 3) store
  hist <- createOrGetHistogramWithExponentialDecaySampling "hist" 1028 0.015 store
  meter <- createOrGetMeter "meter" store
  timer <- createOrGetTimer "timer" store
  Counter.inc counter 2
  Histogram.update hist 1.2
  Histogram.update hist 2.1
  Meter.mark meter
  Timer.update timer (Milliseconds 1000.0)
  launchAff $ sample store >>= logShow