├── 3 ├── collectd │ └── riemann.conf └── riemann │ ├── examplecom │ └── etc │ │ └── email.clj │ ├── riemann.config │ └── riemann.config_riemannmc ├── 4 ├── collectd │ ├── carbon.conf │ └── grafana.conf ├── graphite │ ├── carbon-cache-ubuntu.init │ ├── carbon-cache@.service │ ├── carbon-relay-ubuntu.init │ ├── carbon-relay@.service │ ├── carbon.conf │ ├── graphite-api.service │ ├── graphite-api.yaml │ ├── graphite-carbon.default │ ├── local_settings.py │ └── whisper-calculator.py └── riemann │ ├── examplecom │ └── etc │ │ ├── email.clj │ │ └── graphite.clj │ ├── riemann.config │ └── riemann.config_riemannmc ├── 7 ├── collectd │ ├── collectd.conf │ └── collectd.d │ │ ├── cpu.conf │ │ ├── df.conf │ │ ├── docker.conf │ │ ├── memory.conf │ │ ├── processes.conf │ │ ├── swap.conf │ │ └── write_riemann.conf └── riemann │ ├── examplecom │ └── etc │ │ ├── checks.clj │ │ ├── collectd.clj │ │ ├── email.clj │ │ └── graphite.clj │ └── riemann.config ├── 8 ├── collectd │ ├── elasticsearch.conf │ ├── elasticsearch_collectd.py │ ├── logstash.conf │ ├── logstash_jmx.conf │ └── rsyslogd.conf ├── logstash │ └── logstash.conf └── riemann │ ├── examplecom │ └── etc │ │ ├── checks.clj │ │ ├── collectd.clj │ │ ├── email.clj │ │ ├── graphite.clj │ │ └── logstash.clj │ └── riemann.config ├── 9 ├── collectd │ └── statsd.conf └── riemann │ ├── examplecom │ └── etc │ │ ├── checks.clj │ │ ├── collectd.clj │ │ ├── email.clj │ │ ├── graphite.clj │ │ └── logstash.clj │ └── riemann.config ├── 10 ├── grafana │ └── riemann.js └── riemann │ ├── examplecom │ └── etc │ │ ├── checks.clj │ │ ├── collectd.clj │ │ ├── count-notifications.clj │ │ ├── email.clj │ │ ├── graphite.clj │ │ ├── logstash.clj │ │ ├── maintenance.clj │ │ ├── pagerduty.clj │ │ └── slack.clj │ └── riemann.config ├── .gitignore ├── 11-13 ├── collectd │ ├── mysql.conf │ └── tornado-api.conf ├── grafana │ └── tornado-dashboard.json ├── logstash │ ├── logstash.conf │ └── patterns │ │ ├── nginx │ │ └── tornadoapi ├── riemann │ ├── examplecom │ │ ├── app │ │ │ └── tornado.clj │ │ └── etc │ │ │ ├── checks.clj │ │ │ ├── collectd.clj │ │ │ ├── count-notifications.clj │ │ │ ├── email.clj │ │ │ ├── graphite.clj │ │ │ ├── logstash.clj │ │ │ ├── maintenance.clj │ │ │ ├── pagerduty.clj │ │ │ └── slack.clj │ └── riemann.config └── rsyslog │ └── 35-aom-clojure-rest.conf ├── 5-6 ├── collectd │ ├── collectd.conf │ └── collectd.d │ │ ├── carbon.conf │ │ ├── cpu.conf │ │ ├── df.conf │ │ ├── memory.conf │ │ ├── processes.conf │ │ ├── swap.conf │ │ └── write_riemann.conf └── riemann │ ├── examplecom │ └── etc │ │ ├── checks.clj │ │ ├── collectd.clj │ │ ├── email.clj │ │ └── graphite.clj │ └── riemann.config ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/.gitignore -------------------------------------------------------------------------------- /10/grafana/riemann.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/grafana/riemann.js -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/checks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/checks.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/collectd.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/collectd.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/count-notifications.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/count-notifications.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/logstash.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/logstash.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/maintenance.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/maintenance.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/pagerduty.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/pagerduty.clj -------------------------------------------------------------------------------- /10/riemann/examplecom/etc/slack.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/examplecom/etc/slack.clj -------------------------------------------------------------------------------- /10/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/10/riemann/riemann.config -------------------------------------------------------------------------------- /11-13/collectd/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/collectd/mysql.conf -------------------------------------------------------------------------------- /11-13/collectd/tornado-api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/collectd/tornado-api.conf -------------------------------------------------------------------------------- /11-13/grafana/tornado-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/grafana/tornado-dashboard.json -------------------------------------------------------------------------------- /11-13/logstash/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/logstash/logstash.conf -------------------------------------------------------------------------------- /11-13/logstash/patterns/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/logstash/patterns/nginx -------------------------------------------------------------------------------- /11-13/logstash/patterns/tornadoapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/logstash/patterns/tornadoapi -------------------------------------------------------------------------------- /11-13/riemann/examplecom/app/tornado.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/app/tornado.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/checks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/checks.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/collectd.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/collectd.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/count-notifications.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/count-notifications.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/logstash.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/logstash.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/maintenance.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/maintenance.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/pagerduty.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/pagerduty.clj -------------------------------------------------------------------------------- /11-13/riemann/examplecom/etc/slack.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/examplecom/etc/slack.clj -------------------------------------------------------------------------------- /11-13/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/riemann/riemann.config -------------------------------------------------------------------------------- /11-13/rsyslog/35-aom-clojure-rest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/11-13/rsyslog/35-aom-clojure-rest.conf -------------------------------------------------------------------------------- /3/collectd/riemann.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/3/collectd/riemann.conf -------------------------------------------------------------------------------- /3/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/3/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /3/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/3/riemann/riemann.config -------------------------------------------------------------------------------- /3/riemann/riemann.config_riemannmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/3/riemann/riemann.config_riemannmc -------------------------------------------------------------------------------- /4/collectd/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/collectd/carbon.conf -------------------------------------------------------------------------------- /4/collectd/grafana.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/collectd/grafana.conf -------------------------------------------------------------------------------- /4/graphite/carbon-cache-ubuntu.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/carbon-cache-ubuntu.init -------------------------------------------------------------------------------- /4/graphite/carbon-cache@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/carbon-cache@.service -------------------------------------------------------------------------------- /4/graphite/carbon-relay-ubuntu.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/carbon-relay-ubuntu.init -------------------------------------------------------------------------------- /4/graphite/carbon-relay@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/carbon-relay@.service -------------------------------------------------------------------------------- /4/graphite/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/carbon.conf -------------------------------------------------------------------------------- /4/graphite/graphite-api.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/graphite-api.service -------------------------------------------------------------------------------- /4/graphite/graphite-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/graphite-api.yaml -------------------------------------------------------------------------------- /4/graphite/graphite-carbon.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/graphite-carbon.default -------------------------------------------------------------------------------- /4/graphite/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/local_settings.py -------------------------------------------------------------------------------- /4/graphite/whisper-calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/graphite/whisper-calculator.py -------------------------------------------------------------------------------- /4/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /4/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /4/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/riemann/riemann.config -------------------------------------------------------------------------------- /4/riemann/riemann.config_riemannmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/4/riemann/riemann.config_riemannmc -------------------------------------------------------------------------------- /5-6/collectd/collectd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/carbon.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/cpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/cpu.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/df.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/df.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/memory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/memory.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/processes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/processes.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/swap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/swap.conf -------------------------------------------------------------------------------- /5-6/collectd/collectd.d/write_riemann.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/collectd/collectd.d/write_riemann.conf -------------------------------------------------------------------------------- /5-6/riemann/examplecom/etc/checks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/riemann/examplecom/etc/checks.clj -------------------------------------------------------------------------------- /5-6/riemann/examplecom/etc/collectd.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/riemann/examplecom/etc/collectd.clj -------------------------------------------------------------------------------- /5-6/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /5-6/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /5-6/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/5-6/riemann/riemann.config -------------------------------------------------------------------------------- /7/collectd/collectd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/cpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/cpu.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/df.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/df.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/docker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/docker.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/memory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/memory.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/processes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/processes.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/swap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/swap.conf -------------------------------------------------------------------------------- /7/collectd/collectd.d/write_riemann.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/collectd/collectd.d/write_riemann.conf -------------------------------------------------------------------------------- /7/riemann/examplecom/etc/checks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/riemann/examplecom/etc/checks.clj -------------------------------------------------------------------------------- /7/riemann/examplecom/etc/collectd.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/riemann/examplecom/etc/collectd.clj -------------------------------------------------------------------------------- /7/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /7/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /7/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/7/riemann/riemann.config -------------------------------------------------------------------------------- /8/collectd/elasticsearch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/collectd/elasticsearch.conf -------------------------------------------------------------------------------- /8/collectd/elasticsearch_collectd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/collectd/elasticsearch_collectd.py -------------------------------------------------------------------------------- /8/collectd/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/collectd/logstash.conf -------------------------------------------------------------------------------- /8/collectd/logstash_jmx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/collectd/logstash_jmx.conf -------------------------------------------------------------------------------- /8/collectd/rsyslogd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/collectd/rsyslogd.conf -------------------------------------------------------------------------------- /8/logstash/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/logstash/logstash.conf -------------------------------------------------------------------------------- /8/riemann/examplecom/etc/checks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/riemann/examplecom/etc/checks.clj -------------------------------------------------------------------------------- /8/riemann/examplecom/etc/collectd.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/riemann/examplecom/etc/collectd.clj -------------------------------------------------------------------------------- /8/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /8/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /8/riemann/examplecom/etc/logstash.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/riemann/examplecom/etc/logstash.clj -------------------------------------------------------------------------------- /8/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/8/riemann/riemann.config -------------------------------------------------------------------------------- /9/collectd/statsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/collectd/statsd.conf -------------------------------------------------------------------------------- /9/riemann/examplecom/etc/checks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/riemann/examplecom/etc/checks.clj -------------------------------------------------------------------------------- /9/riemann/examplecom/etc/collectd.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/riemann/examplecom/etc/collectd.clj -------------------------------------------------------------------------------- /9/riemann/examplecom/etc/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/riemann/examplecom/etc/email.clj -------------------------------------------------------------------------------- /9/riemann/examplecom/etc/graphite.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/riemann/examplecom/etc/graphite.clj -------------------------------------------------------------------------------- /9/riemann/examplecom/etc/logstash.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/riemann/examplecom/etc/logstash.clj -------------------------------------------------------------------------------- /9/riemann/riemann.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/9/riemann/riemann.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turnbullpress/aom-code/HEAD/README.md --------------------------------------------------------------------------------