From 2163daead26389562384da339295958841be0fb0 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 8 Feb 2025 23:48:00 +0900 Subject: [PATCH] Update docs/configuring-playbook-prometheus-grafana.md: move the comments out of the YAML block Signed-off-by: Suguru Hirahara --- docs/configuring-playbook-prometheus-grafana.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuring-playbook-prometheus-grafana.md b/docs/configuring-playbook-prometheus-grafana.md index d3ea84f38..13da39f81 100644 --- a/docs/configuring-playbook-prometheus-grafana.md +++ b/docs/configuring-playbook-prometheus-grafana.md @@ -46,7 +46,11 @@ Take a look at: ### Configure Grafana -Grafana is an open source visualization and analytics software. To enable it, add the following configuration to your `vars.yml` file: +Grafana is an open source visualization and analytics software. To enable it, add the following configuration to your `vars.yml` file. Make sure to replace `USERNAME_HERE` and `PASSWORD_HERE`. + +**Notes**: +- `grafana_default_admin_user` has nothing to do with your Matrix user ID. It can be any string you'd like. +- Changing the username/password subsequently won't work. ```yaml grafana_enabled: true @@ -54,11 +58,7 @@ grafana_enabled: true # Uncomment to allow viewing Grafana without logging in. # grafana_anonymous_access: true -# This has no relation to your Matrix user ID. It can be any username you'd like. -# Changing the username subsequently won't work. grafana_default_admin_user: "USERNAME_HERE" - -# Changing the password subsequently won't work. grafana_default_admin_password: "PASSWORD_HERE" ```