Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplifies/updates some of our configuration examples #2097

Merged
merged 1 commit into from
May 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 9 additions & 26 deletions docs/configuration/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ingester:

schema_config:
configs:
- from: 2018-04-15
- from: 2020-05-15
store: boltdb
object_store: filesystem
schema: v11
Expand All @@ -47,22 +47,6 @@ limits_config:
reject_old_samples: true
reject_old_samples_max_age: 168h

chunk_store_config:
max_look_back_period: 0

table_manager:
chunk_tables_provisioning:
inactive_read_throughput: 0
inactive_write_throughput: 0
provisioned_read_throughput: 0
provisioned_write_throughput: 0
index_tables_provisioning:
inactive_read_throughput: 0
inactive_write_throughput: 0
provisioned_read_throughput: 0
provisioned_write_throughput: 0
retention_deletes_enabled: false
retention_period: 0
```

## Google Cloud Storage
Expand All @@ -73,7 +57,7 @@ stores, respectively.
```yaml
schema_config:
configs:
- from: 2018-04-15
- from: 2020-05-15
store: bigtable
object_store: gcs
schema: v11
Expand All @@ -97,7 +81,7 @@ Cassandra for the index storage:
```yaml
schema_config:
configs:
- from: 2018-04-15
- from: 2020-05-15
store: cassandra
object_store: filesystem
schema: v11
Expand Down Expand Up @@ -125,13 +109,12 @@ index storage:
```yaml
schema_config:
configs:
- from: 2018-04-15
store: aws
object_store: s3
schema: v11
index:
prefix: dynamodb_table_name
period: 0
- from: 2020-05-15
store: aws
object_store: s3
schema: v11
index:
prefix: loki_
storage_config:
aws:
s3: s3://access_key:secret_access_key@region/bucket_name
Expand Down