From a988a9b62f6b18e50767288c30b869b829f72560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Sun, 12 Dec 2021 16:46:59 +0000 Subject: roles: Add grafana --- roles/grafana/templates/datasources-default.yml.j2 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 roles/grafana/templates/datasources-default.yml.j2 (limited to 'roles/grafana/templates/datasources-default.yml.j2') diff --git a/roles/grafana/templates/datasources-default.yml.j2 b/roles/grafana/templates/datasources-default.yml.j2 new file mode 100644 index 0000000..1414ff2 --- /dev/null +++ b/roles/grafana/templates/datasources-default.yml.j2 @@ -0,0 +1,12 @@ +# managed by Ansible +{% import 'macros.j2' as macros with context %} + +apiVersion: 1 + +datasources: +{% call(h) macros.loop_valid_hosts("servers") %} + - name: {{ h.inventory_hostname }}-prometheus + type: prometheus + url: http://{{ h.__ip.internal }}:9090 + +{% endcall %} -- cgit v1.2.3