Skip to content

Instantly share code, notes, and snippets.

@mgodave
Created March 13, 2013 20:04
Show Gist options
  • Select an option

  • Save mgodave/5155644 to your computer and use it in GitHub Desktop.

Select an option

Save mgodave/5155644 to your computer and use it in GitHub Desktop.
; -*- mode: clojure; -*-
; vim: filetype=clojure
(logging/init :file "/var/log/riemann/riemann.log")
; Listen on the local interface over TCP (5555), UDP (5555), and websockets
; (5556)
(let [host "127.0.0.1"]
(tcp-server :host host)
(udp-server :host host)
(ws-server :host host))
; Expire old events from the index every 5 seconds.
(periodically-expire 5)
; Keep events in the index for 5 minutes by default.
(let [index (default :ttl 300 (update-index (index)))]
; Inbound events will be passed to these streams:
(streams
(rate 5 (comp prn float :metric))
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment