diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a51159dfb..fa53134a570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,6 +72,7 @@ * [ENHANCEMENT] Recommend fast disks for ingesters and store-gateways in production tips. #1903 * [ENHANCEMENT] Explain the runtime override of active series matchers. #1868 * [ENHANCEMENT] Clarify "Set rule group" API specification. #1869 +* [BUGFIX] Fixed ruler configuration used in the getting started guide. #2052 ## 2.1.0 ### Grafana Mimir diff --git a/docs/configurations/demo.yaml b/docs/configurations/demo.yaml index e6064d46601..2c83f967067 100644 --- a/docs/configurations/demo.yaml +++ b/docs/configurations/demo.yaml @@ -31,9 +31,9 @@ ingester: replication_factor: 1 ruler_storage: - backend: local - local: - directory: /tmp/mimir/rules + backend: filesystem + filesystem: + dir: /tmp/mimir/rules server: http_listen_port: 9009 diff --git a/docs/sources/operators-guide/getting-started/_index.md b/docs/sources/operators-guide/getting-started/_index.md index 1116f404ff0..bd330f20772 100644 --- a/docs/sources/operators-guide/getting-started/_index.md +++ b/docs/sources/operators-guide/getting-started/_index.md @@ -82,9 +82,9 @@ ingester: replication_factor: 1 ruler_storage: - backend: local - local: - directory: /tmp/mimir/rules + backend: filesystem + filesystem: + dir: /tmp/mimir/rules server: http_listen_port: 9009 @@ -103,7 +103,7 @@ In a terminal, run one of the following commands: - Using Docker: ```bash - docker run --rm --name mimir --publish 9009:9009 --volume "$(pwd)"/demo.yaml:/etc/mimir/demo.yaml grafana/mimir:${MIMIR_LATEST} --config.file=/etc/mimir/demo.yaml + docker run --rm --name mimir --publish 9009:9009 --volume "$(pwd)"/demo.yaml:/etc/mimir/demo.yaml grafana/mimir:latest --config.file=/etc/mimir/demo.yaml ``` - Using a local binary: