Created
January 26, 2016 23:16
-
-
Save jamtur01/5b4fbfa43b91093ec282 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defn foo [] ....) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (include "include/") | |
| (include "examplecom/") | |
| (require '[examplecom.app.tornado :as tornado]) | |
| .... | |
| (streams | |
| (tornado/bar) | |
| ...) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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