From 872f7f0b9c5136c119feb02b6e29608ca517f514 Mon Sep 17 00:00:00 2001 From: J Stickler Date: Thu, 3 Oct 2024 12:31:09 -0400 Subject: [PATCH] docs: update installation instructions (#815) --- docs/sources/access/_index.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/sources/access/_index.md b/docs/sources/access/_index.md index 7e6410ec5..4b81bb520 100644 --- a/docs/sources/access/_index.md +++ b/docs/sources/access/_index.md @@ -43,11 +43,15 @@ The following Loki and Grafana version and configuration are required: - Grafana v11.2.0 or later - Loki v3.2.0 or later - - Enable pattern ingestion by setting `--pattern-ingester.enabled=true` in your Loki configuration. - - Enable the volume endpoint in your Loki configuration: + - Enable pattern ingestion by setting `pattern-ingester.enabled` to `true`in your Loki configuration file. + - Enable structured metadata by setting `allow_structured_metadata` to `true` within your Loki config file. + - Enable the volume endpoint by setting `volume_enabled` to `true` within your Loki config file. ```yaml + pattern_ingester: + enabled: true limits_config: + allow_structured_metadata: true volume_enabled: true ```