Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivoronin/clj-graphite
A Clojure library for sending metrics to Graphite
https://github.com/ivoronin/clj-graphite
Last synced: 5 days ago
JSON representation
A Clojure library for sending metrics to Graphite
- Host: GitHub
- URL: https://github.com/ivoronin/clj-graphite
- Owner: ivoronin
- License: epl-1.0
- Created: 2013-09-30T10:52:53.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-30T10:53:11.000Z (about 11 years ago)
- Last Synced: 2024-07-18T01:54:25.106Z (4 months ago)
- Language: Clojure
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clj-graphite
A Clojure library for sending metrics to Graphite
## Artifacts
`clj-graphite` artifacts are [released to Clojars](https://clojars.org/clj-graphite).
### Latest release
Add the following dependency to your `project.clj`:
``` clj
[clj-graphite "0.1.1"]
```## Usage
``` clj
(require 'clj-graphite.client)(let [graphite (clj-graphite.client/client { :host "127.0.0.1" :port 2003 })]
(.feed graphite "server.requests.count" 7856.0 1380528686)
)
```## License
Copyright © 2013 Ilya Voronin
Distributed under the Eclipse Public License 1.0