clj-statsd is a client for the statsd protocol for the clojure programming language.
Here is a snippet showing the use of clj-statsd:
(ns testing
(:require [clj-statsd :as s]))
(s/setup "127.0.0.1" 8125)
(s/increment :some_counter) ; simple increment
(s/decrement "some_other_counter") ; simple decrement
(s/increment :some_counter 2) ; double increment
(s/increment :some_counter 2 0.1) ; sampled double increment
(s/timing :timing_value 300) ; record 300ms for "timing_value"
(s/gauge :current_value 42) ; record an arbitrary value
Buckets can be strings or keywords. For more information please refer to statsd
The easiest way to use clj-statsd in your own projects is via Leiningen. Add the following dependency to your project.clj file:
[clj-statsd "0.3.10"]
To build from source, run the following commands:
lein deps
lein jar