-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the local config to work locally and inside docker. (#1963)
* Improve the local config to work locally and inside docker. Signed-off-by: Cyril Tovena <[email protected]> * Add a file specifically for docker loki config. Signed-off-by: Cyril Tovena <[email protected]>
- Loading branch information
1 parent
be56144
commit 4a208ce
Showing
4 changed files
with
60 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
auth_enabled: false | ||
|
||
server: | ||
http_listen_port: 3100 | ||
|
||
ingester: | ||
lifecycler: | ||
address: 127.0.0.1 | ||
ring: | ||
kvstore: | ||
store: inmemory | ||
replication_factor: 1 | ||
final_sleep: 0s | ||
chunk_idle_period: 5m | ||
chunk_retain_period: 30s | ||
max_transfer_retries: 0 | ||
|
||
schema_config: | ||
configs: | ||
- from: 2018-04-15 | ||
store: boltdb | ||
object_store: filesystem | ||
schema: v11 | ||
index: | ||
prefix: index_ | ||
period: 168h | ||
|
||
storage_config: | ||
boltdb: | ||
directory: /loki/index | ||
|
||
filesystem: | ||
directory: /loki/chunks | ||
|
||
limits_config: | ||
enforce_metric_name: false | ||
reject_old_samples: true | ||
reject_old_samples_max_age: 168h | ||
|
||
chunk_store_config: | ||
max_look_back_period: 0s | ||
|
||
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: 0s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters