diff --git a/website/docs/applications/observability/grafana.md b/website/docs/applications/observability/grafana.md index 1d7a73045c..5c8137df45 100644 --- a/website/docs/applications/observability/grafana.md +++ b/website/docs/applications/observability/grafana.md @@ -13,5 +13,3 @@ Query, visualize, alert on, and understand your data no matter where it’s stor Set `stats_enabled: true` in your `inventories//group_vars/nas.yml` file. Grafana's web interface can be found at . - - diff --git a/website/docs/applications/stacks/logging.md b/website/docs/applications/stacks/logging.md index 3eee7a76d6..d5e18293b2 100644 --- a/website/docs/applications/stacks/logging.md +++ b/website/docs/applications/stacks/logging.md @@ -6,13 +6,13 @@ The logging stack sets up a fully functional application logging capture and sea To enable it, add the following to your `inventories//group_vars/nas.yml`: -``` +```yaml logging_stack_enabled: true ``` Which is equivalent to: -``` +```yaml minio_enabled: true loki_enabled: true promtail_enabled: true @@ -23,7 +23,7 @@ Once set up, all container stdout logs will be captured and stored. You'll find Read more: - - [Grafana](../observability/grafana.md) - - [Loki](../system-tools/loki.md) - - [Minio](../system-tools/minio.md) - - [Promtail](../system-tools/promtail.md) +- [Grafana](../observability/grafana.md) +- [Loki](../system-tools/loki.md) +- [Minio](../system-tools/minio.md) +- [Promtail](../system-tools/promtail.md) diff --git a/website/docs/applications/system-tools/loki.md b/website/docs/applications/system-tools/loki.md index 4a2061a7eb..25c9ff569b 100644 --- a/website/docs/applications/system-tools/loki.md +++ b/website/docs/applications/system-tools/loki.md @@ -14,6 +14,6 @@ Set `loki_enabled: true` in your `inventories//nas.yml` file. Loki doesn't have a web interface. To see what it's doing look at the container logs from your Ansible-NAS shell: -``` +```bash docker logs loki -f ``` diff --git a/website/docs/applications/system-tools/promtail.md b/website/docs/applications/system-tools/promtail.md index c6682531bd..5140426355 100644 --- a/website/docs/applications/system-tools/promtail.md +++ b/website/docs/applications/system-tools/promtail.md @@ -10,9 +10,9 @@ Promtail is an agent which ships the contents of local logs to a private Grafana It primarily: - - Discovers targets - - Attaches labels to log streams - - Pushes them to the Loki instance. +- Discovers targets +- Attaches labels to log streams +- Pushes them to the Loki instance. ## Usage