aboutsummaryrefslogtreecommitdiff
path: root/grafana/files/prometheus.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'grafana/files/prometheus.yaml')
-rw-r--r--grafana/files/prometheus.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/grafana/files/prometheus.yaml b/grafana/files/prometheus.yaml
new file mode 100644
index 0000000..7df8261
--- /dev/null
+++ b/grafana/files/prometheus.yaml
@@ -0,0 +1,37 @@
+# config file version
+apiVersion: 1
+
+# list of datasources to insert/update depending
+# what's available in the database
+datasources:
+ # <string, required> name of the datasource. Required
+ - name: Prometheus
+ # <string, required> datasource type. Required
+ type: prometheus
+ # <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: my_unique_uid
+ # <string> url
+ url: http://prometheus:9090
+ # <string> Deprecated, use secureJsonData.password
+ password:
+ # <string> database user, if used
+ user:
+ # <string> database name, if used
+ database:
+ # <bool> enable/disable basic auth
+ basicAuth:
+ # <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:
+ version: 1
+ # <bool> allow users to edit datasources from the UI.
+ editable: true