├── .travis.yml ├── LICENSE ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── tasks ├── Debian.yml ├── RedHat.yml ├── django-admin.yml ├── main.yml └── manage.yml ├── templates ├── carbon.conf.j2 ├── carbon_cache_systemd.j2 ├── carbon_relay_systemd.j2 ├── createsuperuser.py.j2 ├── debian_carbon_cache.j2 ├── debian_carbon_relay.j2 ├── local_settings.py.j2 ├── redhat_uwsgi_default.ini.j2 ├── relay-rules.conf.j2 ├── storage-schemas.conf.j2 ├── uwsgi_graphite.ini.j2 ├── uwsgi_systemd.j2 ├── wsgi-1.0.x.py.j2 └── wsgi.py.j2 ├── tests ├── main.yml ├── post.yml ├── pre.yml └── templates │ └── graphite.conf.j2 └── vars └── main.yml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tasks/Debian.yml -------------------------------------------------------------------------------- /tasks/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tasks/RedHat.yml -------------------------------------------------------------------------------- /tasks/django-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tasks/django-admin.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/manage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tasks/manage.yml -------------------------------------------------------------------------------- /templates/carbon.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/carbon.conf.j2 -------------------------------------------------------------------------------- /templates/carbon_cache_systemd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/carbon_cache_systemd.j2 -------------------------------------------------------------------------------- /templates/carbon_relay_systemd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/carbon_relay_systemd.j2 -------------------------------------------------------------------------------- /templates/createsuperuser.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/createsuperuser.py.j2 -------------------------------------------------------------------------------- /templates/debian_carbon_cache.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/debian_carbon_cache.j2 -------------------------------------------------------------------------------- /templates/debian_carbon_relay.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/debian_carbon_relay.j2 -------------------------------------------------------------------------------- /templates/local_settings.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/local_settings.py.j2 -------------------------------------------------------------------------------- /templates/redhat_uwsgi_default.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/redhat_uwsgi_default.ini.j2 -------------------------------------------------------------------------------- /templates/relay-rules.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/relay-rules.conf.j2 -------------------------------------------------------------------------------- /templates/storage-schemas.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/storage-schemas.conf.j2 -------------------------------------------------------------------------------- /templates/uwsgi_graphite.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/uwsgi_graphite.ini.j2 -------------------------------------------------------------------------------- /templates/uwsgi_systemd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/uwsgi_systemd.j2 -------------------------------------------------------------------------------- /templates/wsgi-1.0.x.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/wsgi-1.0.x.py.j2 -------------------------------------------------------------------------------- /templates/wsgi.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/templates/wsgi.py.j2 -------------------------------------------------------------------------------- /tests/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tests/main.yml -------------------------------------------------------------------------------- /tests/post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tests/post.yml -------------------------------------------------------------------------------- /tests/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tests/pre.yml -------------------------------------------------------------------------------- /tests/templates/graphite.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsg/ansible-graphite/HEAD/tests/templates/graphite.conf.j2 -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | --------------------------------------------------------------------------------