Integrate statsd metrics into ansible playbook execution.

* Add dependencies for pystatsd and django-statsd-mozilla
* Default turned off except for development environment
* Modify docker-compose to install statsd/graphite host
This commit is contained in:
Joshua "jag" Ginsberg
2015-12-10 12:39:55 -05:00
parent 966e40d030
commit f25b76aee9
10 changed files with 124 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ tower:
- postgres
- redis
- mongo
- graphite
volumes:
- ../:/tower_devel
postgres:
@@ -28,3 +29,10 @@ dockerui:
privileged: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
graphite:
image: hopsoft/graphite-statsd
ports:
- "8001:80"
- "2003:2003"
- "8125:8125/udp"
- "8126:8126"