mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 23:38:32 +08:00
[bitnami/grafana-loki] Release 3.0.0-debian-12-r0 (#65296)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
70
bitnami/grafana-loki/3/debian-12/examples/loki.yaml
Normal file
70
bitnami/grafana-loki/3/debian-12/examples/loki.yaml
Normal file
@@ -0,0 +1,70 @@
|
||||
# This is a configuration to deploy Loki depending only on a storage solution
|
||||
# for example, an S3-compatible API like MinIO.
|
||||
# The ring configuration is based on the gossip memberlist and the index is shipped to storage
|
||||
# via Single Store (boltdb-shipper)
|
||||
|
||||
auth_enabled: false
|
||||
|
||||
server:
|
||||
http_listen_port: 3100
|
||||
|
||||
distributor:
|
||||
ring:
|
||||
kvstore:
|
||||
store: memberlist
|
||||
|
||||
ingester:
|
||||
lifecycler:
|
||||
ring:
|
||||
kvstore:
|
||||
store: memberlist
|
||||
replication_factor: 1
|
||||
final_sleep: 0s
|
||||
chunk_idle_period: 5m
|
||||
chunk_retain_period: 30s
|
||||
|
||||
memberlist:
|
||||
abort_if_cluster_join_fails: false
|
||||
|
||||
# Expose this port on all distributor, ingester
|
||||
# and querier replicas.
|
||||
bind_port: 7946
|
||||
|
||||
# You can use a headless k8s service for all distributor,
|
||||
# ingester and querier components.
|
||||
join_members:
|
||||
- loki-gossip-ring.loki.svc.cluster.local:7946
|
||||
|
||||
max_join_backoff: 1m
|
||||
max_join_retries: 10
|
||||
min_join_backoff: 1s
|
||||
|
||||
schema_config:
|
||||
configs:
|
||||
- from: 2020-05-15
|
||||
store: boltdb-shipper
|
||||
object_store: s3
|
||||
schema: v11
|
||||
index:
|
||||
prefix: index_
|
||||
period: 24h
|
||||
|
||||
storage_config:
|
||||
boltdb_shipper:
|
||||
active_index_directory: /loki/index
|
||||
cache_location: /loki/index_cache
|
||||
shared_store: s3
|
||||
|
||||
aws:
|
||||
s3: s3://access_key:secret_access_key@custom_endpoint/bucket_name
|
||||
s3forcepathstyle: true
|
||||
|
||||
limits_config:
|
||||
enforce_metric_name: false
|
||||
reject_old_samples: true
|
||||
reject_old_samples_max_age: 168h
|
||||
|
||||
compactor:
|
||||
working_directory: /data/compactor
|
||||
shared_store: s3
|
||||
compaction_interval: 5m
|
||||
Reference in New Issue
Block a user