Skip to content

Instantly share code, notes, and snippets.

@jamtur01
Created January 26, 2016 23:16
Show Gist options
  • Save jamtur01/5b4fbfa43b91093ec282 to your computer and use it in GitHub Desktop.
Save jamtur01/5b4fbfa43b91093ec282 to your computer and use it in GitHub Desktop.
defn foo [] ....)
(include "include/")
(include "examplecom/")
(require '[examplecom.app.tornado :as tornado])
....
(streams
(tornado/bar)
...)
(ns examplecom.app.tornado
"Monitoring streams for Tornado"
(:require [riemann.config :refer :all]
[clojure.tools.logging :refer :all]
[riemann.streams :refer :all]
[riemann.folds :as folds]))
(defn bar []
(foo)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment