-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
template query_range, template cache writeback settings, testing a si…
…ngle binary file Signed-off-by: Edward Welch <[email protected]>
- Loading branch information
Showing
2 changed files
with
107 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
loki: | ||
commonConfig: | ||
replication_factor: 1 | ||
image: | ||
tag: "3.0.0-rc.1-amd64-45ca2fa51" | ||
|
||
schemaConfig: | ||
configs: | ||
- from: 2024-04-01 | ||
store: tsdb | ||
object_store: s3 | ||
schema: v13 | ||
index: | ||
prefix: loki_index_ | ||
period: 24h | ||
ingester: | ||
chunk_encoding: snappy | ||
tracing: | ||
enabled: true | ||
querier: | ||
# Default is 4, if you have enough memory and CPU you can increase, reduce if OOMing | ||
max_concurrent: 2 | ||
|
||
gateway: | ||
ingress: | ||
enabled: true | ||
hosts: | ||
- host: FIXME | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
|
||
deploymentMode: SingleBinary | ||
singleBinary: | ||
replicas: 1 | ||
resources: | ||
limits: | ||
cpu: 3 | ||
memory: 6Gi | ||
requests: | ||
cpu: 2 | ||
memory: 2Gi | ||
extraEnv: | ||
# Keep a little bit lower than memory limits | ||
- name: GOMEMLIMIT | ||
value: 5500MiB | ||
|
||
chunksCache: | ||
# default is 500MB, with limited memory keep this smaller | ||
writebackSizeLimit: 50MB | ||
|
||
# Enable minio for storage | ||
minio: | ||
enabled: true | ||
|
||
# Zero out replica counts of other deployment modes | ||
backend: | ||
replicas: 0 | ||
read: | ||
replicas: 0 | ||
write: | ||
replicas: 0 | ||
|
||
ingester: | ||
replicas: 0 | ||
querier: | ||
replicas: 0 | ||
queryFrontend: | ||
replicas: 0 | ||
queryScheduler: | ||
replicas: 0 | ||
distributor: | ||
replicas: 0 | ||
compactor: | ||
replicas: 0 | ||
indexGateway: | ||
replicas: 0 | ||
bloomCompactor: | ||
replicas: 0 | ||
bloomGateway: | ||
replicas: 0 |
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