A Clojure library for interacting with Librato Metrics. Currently maintained by aphyr (https://github.com/aphyr/clj-librato).
Feel free to contribute!
(require '[clj-librato.metrics :as metrics])
; pass it an email, api key, list of gauges, and a list of counters
(metrics/collate "[email protected]" "my-api-key" [{:name "gauge 1" :value 34 } {:name "gauge 2" :value 0}]
[{:name "a counter" :value 79213}])
Copyright (C) 2011 Michael Gorsuch [email protected]
Distributed under the Eclipse Public License, the same as Clojure.