Hi,
I released clj-flume-node <https://github.com/kawasima/clj-flume-node>v0.1.0.
It's a clojure library for Apache
Flume <http://flume.apache.org>.
Apache Flume is a very useful tool for collecting events and logs. But Its
configuration file is Java properties. It's boring for me.
So, I enabled to write the flume configuration by Clojure as following:
(defagent :a1
(flume/source :r1
:type "syslogudp"
:host "127.0.0.1"
:port 4444
:channels :c1)
(flume/sink :k1
:type "logger"
:channel :c1)
(flume/channel :c1
:type "memory"
:capacity 1000
:transactionCapacity 100))
As usual available from Clojars or GitHub:
- https://clojars.org/net.unit8/clj-flume-node
- https://github.com/kawasima/clj-flume-node
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.