From 0f5df9580a201325af7046ec6677705547f86ea6 Mon Sep 17 00:00:00 2001 From: IamTheFij Date: Fri, 18 Aug 2023 21:20:11 -0700 Subject: [PATCH] Add influxdb provisioning for Grafana This will provide access to Home Assistant and Proxmox metrics. --- .../provisioning/datasources/influxdb.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 core/metrics/grafana/provisioning/datasources/influxdb.yml diff --git a/core/metrics/grafana/provisioning/datasources/influxdb.yml b/core/metrics/grafana/provisioning/datasources/influxdb.yml new file mode 100644 index 0000000..551944d --- /dev/null +++ b/core/metrics/grafana/provisioning/datasources/influxdb.yml @@ -0,0 +1,21 @@ +--- +apiVersion: 1 + +datasources: + - name: Home Assistant metrics + type: influxdb + access: proxy + orgId: 1 + url: http://192.168.2.75:8086 + database: hass + isDefault: false + version: 1 + + - name: Proxmox stats + type: influxdb + access: proxy + orgId: 1 + url: http://192.168.2.75:8086 + database: proxmox + isDefault: false + version: 1 \ No newline at end of file