4 Commits

Author SHA1 Message Date
379f47e0ba chore(release): 1.1.5 2023-04-13 12:02:38 +02:00
0b25cc319d fix: Persist grafana data 2023-04-13 12:02:33 +02:00
6d388c4dbb chore(release): 1.1.4 2023-04-13 12:01:08 +02:00
8c42ceac4f fix: influxdb mount path 2023-04-13 12:01:03 +02:00
3 changed files with 16 additions and 3 deletions

View File

@@ -2,6 +2,20 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.1.5](https://git.laurivan.com/Dev/ansible-role-grafana/compare/v1.1.4...v1.1.5) (2023-04-13)
### Bug Fixes
* Persist grafana data ([0b25cc3](https://git.laurivan.com/Dev/ansible-role-grafana/commit/0b25cc319d2345cf5fc8570b7bd9c1fb270a892a))
### [1.1.4](https://git.laurivan.com/Dev/ansible-role-grafana/compare/v1.1.3...v1.1.4) (2023-04-13)
### Bug Fixes
* influxdb mount path ([8c42cea](https://git.laurivan.com/Dev/ansible-role-grafana/commit/8c42ceac4f89e6259085dfa6c6a97e4942d28655))
### [1.1.3](https://git.laurivan.com/Dev/ansible-role-grafana/compare/v1.1.2...v1.1.3) (2023-04-13)

View File

@@ -20,7 +20,7 @@ services:
ports:
- '{{ influxdb.port }}:8086'
volumes:
- "{{ grafana_volume_influxdb | expanduser | realpath }}:/var/lib/influxdb"
- "{{ grafana_volume_influxdb | expanduser | realpath }}:/var/lib/influxdb2"
env_file:
- "{{ grafana_setup_path | expanduser | realpath }}/env.influxdb.conf"
networks:
@@ -33,7 +33,7 @@ services:
ports:
- '{{ grafana.port }}:3000'
volumes:
# - "{{ grafana_volume_grafana | expanduser | realpath }}:/var/lib/grafana"
- "{{ grafana_volume_grafana | expanduser | realpath }}:/var/lib/grafana"
- "{{ grafana_setup_path | expanduser | realpath }}/grafana-provisioning/:/etc/grafana/provisioning/"
depends_on:
- influxdb

View File

@@ -33,4 +33,3 @@ scrape_configs:
{% for target in grafana_prometheus_targets %}
- "{{ target }}"
{% endfor %}