Skip to content

Commit

Permalink
Fix ruler config in getting started guide (#2052)
Browse files Browse the repository at this point in the history
* Fix ruler config in getting started guide

Signed-off-by: Marco Pracucci <marco@pracucci.com>

* Added CHANGELOG entry

Signed-off-by: Marco Pracucci <marco@pracucci.com>
  • Loading branch information
pracucci authored Jun 8, 2022
1 parent e6e5dd3 commit fa28ccf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,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
Expand Down
6 changes: 3 additions & 3 deletions docs/configurations/demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docs/sources/operators-guide/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit fa28ccf

Please sign in to comment.