From 2449503b7116e8163600d4c0cfe2103e54a3e3c6 Mon Sep 17 00:00:00 2001 From: stedif <stefano.difrischia@inaf.it> Date: Fri, 12 Nov 2021 17:05:44 +0100 Subject: [PATCH] L2SS-406: add timescaledb datasource to grafana --- .../datasources/archiver-timescale.yaml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 docker-compose/grafana/datasources/archiver-timescale.yaml diff --git a/docker-compose/grafana/datasources/archiver-timescale.yaml b/docker-compose/grafana/datasources/archiver-timescale.yaml new file mode 100644 index 000000000..69a896dae --- /dev/null +++ b/docker-compose/grafana/datasources/archiver-timescale.yaml @@ -0,0 +1,45 @@ +apiVersion: 1 + +datasources: + # <string, required> name of the datasource. Required + - name: TimescaleDB + # <string, required> datasource type. Required + type: postgres + # <string, required> access mode. proxy or direct (Server or Browser in the UI). Required + access: proxy + # <int> org id. will default to orgId 1 if not specified + orgId: 1 + # <string> custom UID which can be used to reference this datasource in other parts of the configuration, if not specified will be generated automatically + uid: ZqArtG97z + # <string> url + url: archiver-timescale + # <string> Deprecated, use secureJsonData.password + password: + # <string> database user, if used + user: postgres + # <string> database name, if used + database: hdb + # <bool> enable/disable basic auth + basicAuth: false + # <string> basic auth username + basicAuthUser: + # <string> Deprecated, use secureJsonData.basicAuthPassword + basicAuthPassword: + # <bool> enable/disable with credentials headers + withCredentials: + # <bool> mark as default datasource. Max one per org + isDefault: false + # <map> fields that will be converted to json and stored in jsonData + jsonData: + # <string> determines whether or with what priority a secure TLS/SSL TCP/IP connection will be negotiated with the server. + sslmode: "disable" + # <bool> enable TimescaleDB + timescaledb: true + # <string> json object of data that will be encrypted. + secureJsonData: + # <string> database password, if used + password: password + version: 1 + # <bool> allow users to edit datasources from the UI. + editable: false + -- GitLab