18 lines
439 B
YAML
18 lines
439 B
YAML
# Grafana provisioning: auto-load a TimescaleDB datasource on container start.
|
|
# Mount this file at /etc/grafana/provisioning/datasources/timescaledb.yml
|
|
apiVersion: 1
|
|
|
|
datasources:
|
|
- name: TimescaleDB
|
|
type: postgres
|
|
url: postgres:5432
|
|
database: kerbal_rt
|
|
user: kerbal
|
|
secureJsonData:
|
|
password: kerbal
|
|
jsonData:
|
|
sslmode: disable
|
|
postgresVersion: 1600
|
|
timescaledb: true
|
|
isDefault: true
|