diff options
author | Kristian Lyngstol <kly@kly.no> | 2016-10-22 23:01:57 +0200 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2016-10-22 23:01:57 +0200 |
commit | 0f26dbca2a8ba416cb38002a9463cf80f27487c3 (patch) | |
tree | 6b4dc2874a855db47dcf9ad62ffce97b06660c06 /ansible | |
parent | 57c27b76fbb7dcc7477a573585f1366364bccdd6 (diff) |
More PoC-style graphite integration + grafana
The grafana-bit is ok, but needs to be configured by hand (once).
Also tweaks graphite to write new stuff faster.
I suspect I will need a better way to handle the graphite/carbon insertion
for both ping and snmp, but maybe UDP would solve it...
Running tests tonight to get some data regardless.
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/playbook-test.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ansible/playbook-test.yml b/ansible/playbook-test.yml index f9e19c1..ee35b04 100644 --- a/ansible/playbook-test.yml +++ b/ansible/playbook-test.yml @@ -14,6 +14,10 @@ volumes: [ "{{ pwd.stdout }}/:/opt/gondul" , "{{ pwd.stdout }}/data/graphite:/var/lib/graphite" ] links: [] ports: [] + - name: "gondul-grafana-test" + volumes: [ "{{ pwd.stdout }}/:/opt/gondul" , "{{ pwd.stdout }}/data/grafana:/var/lib/grafana" ] + links: ["gondul-graphite-test:graphite" ] + ports: [] - name: "gondul-collector-test" volumes: [ "{{ pwd.stdout }}/:/opt/gondul" ] links: [ "gondul-db-test:db", "gondul-graphite-test:graphite" ] @@ -28,5 +32,5 @@ ports: "{{ varnish_ports }}" - name: "gondul-snmp-test" volumes: [ "{{ pwd.stdout }}/:/opt/gondul" ] - links: [ "gondul-db-test:db" ] + links: [ "gondul-db-test:db", "gondul-graphite-test:graphite" ] ports: [] |