Merge branch 'loki' into 'main'

feat: Loki configuration

See merge request libre.sh/libre.sh!3
This commit is contained in:
Tim 2023-04-27 13:07:30 +00:00
commit 545ce6072a
2 changed files with 93 additions and 36 deletions

View file

@ -21,19 +21,19 @@ spec:
remediation: remediation:
retries: 5 retries: 5
valuesFrom: valuesFrom:
- targetPath: loki.storage.bucketnames.chunks - targetPath: loki.structuredConfig.common.storage.s3.bucketnames
kind: Secret kind: Secret
name: loki-chunks.bucket.libre.sh name: loki-chunks.bucket.libre.sh
valuesKey: bucket valuesKey: bucket
- targetPath: loki.storage.s3.endpoint - targetPath: loki.structuredConfig.common.storage.s3.endpoint
kind: Secret kind: Secret
name: loki-chunks.bucket.libre.sh name: loki-chunks.bucket.libre.sh
valuesKey: endpoint valuesKey: endpoint
- targetPath: loki.storage.s3.accessKeyId - targetPath: loki.structuredConfig.common.storage.s3.access_key_id
kind: Secret kind: Secret
name: loki-chunks.bucket.libre.sh name: loki-chunks.bucket.libre.sh
valuesKey: accessKey valuesKey: accessKey
- targetPath: loki.storage.s3.secretAccessKey - targetPath: loki.structuredConfig.common.storage.s3.secret_access_key
kind: Secret kind: Secret
name: loki-chunks.bucket.libre.sh name: loki-chunks.bucket.libre.sh
valuesKey: secretKey valuesKey: secretKey

View file

@ -14,27 +14,26 @@ read:
legacyReadTarget: false legacyReadTarget: false
persistence: persistence:
size: 5Gi size: 5Gi
#extraVolumeMounts: extraVolumeMounts:
# - name: loki-rules - name: rules
# mountPath: /rules/fake mountPath: /rules
# - name: loki-rules-tmp extraVolumes:
# mountPath: /tmp/scratch - name: rules
# - name: loki-tmp emptyDir: {}
# mountPath: /tmp/loki-tmp
#extraVolumes:
# - name: loki-rules
# configMap:
# name: loki-alerting-rules
# - name: loki-rules-tmp
# emptyDir: {}
# - name: loki-tmp
# emptyDir: {}
#persistence:
# size: 10Gi
# storageClass: ceph-block
backend: backend:
persistence: persistence:
size: 5Gi size: 5Gi
extraVolumeMounts:
- name: rules
mountPath: /rules/fake
- name: scratch
mountPath: /tmp/scratch
extraVolumes:
- name: rules
configMap:
name: loki-alerting-rules
- name: scratch
emptyDir: {}
gateway: gateway:
enabled: true enabled: true
autoscaling: autoscaling:
@ -43,7 +42,6 @@ gateway:
enabled: true enabled: true
ingressClassName: "nginx" ingressClassName: "nginx"
annotations: annotations:
# certmanager.k8s.io/cluster-issuer: letsencrypt-prod
kubernetes.io/tls-acme: "true" kubernetes.io/tls-acme: "true"
hosts: hosts:
- host: loki.${CLUSTER_DOMAIN} - host: loki.${CLUSTER_DOMAIN}
@ -60,16 +58,75 @@ loki:
# TODO is needed https://grafana.com/docs/loki/next/installation/helm/migrate-to-three-scalable-targets/ & https://github.com/grafana/loki/issues/8407 # TODO is needed https://grafana.com/docs/loki/next/installation/helm/migrate-to-three-scalable-targets/ & https://github.com/grafana/loki/issues/8407
# in doc main-f5fbfab-amd64 # in doc main-f5fbfab-amd64
tag: "main-1c4dd6a-amd64" # is latest tag: "main-1c4dd6a-amd64" # is latest
storage: structuredConfig:
# TODO auth_enabled: true
# bucketNames: server:
# chunks: ${CLUSTER_NAME}-loki-chunks log_level: info
# http_listen_port: 3100 # is default
# ruler: ${CLUSTER_NAME}-loki-chunks grpc_listen_port: 9095 # is default
type: s3 memberlist:
s3: join_members: ["loki-memberlist"]
s3ForcePathStyle: true limits_config:
# TODO retention_period: 14d # default is 0s / disabled
#insecure: false enforce_metric_name: false # default is true
#http_config: reject_old_samples: true # default is true
# insecure_skip_verify: reject_old_samples_max_age: 168h # default is 1w
max_cache_freshness_per_query: 10m # default is 1m
split_queries_by_interval: 15m # default is 30m
ingestion_rate_mb: 50 # default is 4
ingestion_burst_size_mb: 1000 # default is 6
per_stream_rate_limit: 5MB # default is 3MB
per_stream_rate_limit_burst: 20MB # default is 15MB
shard_streams:
enabled: true # default is false
schema_config:
configs:
- from: "2022-01-11" # quote
store: boltdb-shipper
object_store: s3
schema: v12
index:
prefix: loki_index_
period: 24h
common:
path_prefix: /var/loki
replication_factor: 3
storage:
s3:
s3: null
insecure: false
s3forcepathstyle: true
ring:
kvstore:
store: memberlist
ruler:
enable_api: true
enable_alertmanager_v2: true
alertmanager_url: http://kube-prometheus-stack-alertmanager:9093
storage:
type: local
local:
directory: /rules
rule_path: /tmp/scratch
ring:
kvstore:
store: memberlist
distributor:
ring:
kvstore:
store: memberlist
compactor:
working_directory: /var/loki/boltdb-shipper-compactor
shared_store: s3
compaction_interval: 10m # is default
retention_enabled: true # default is false
retention_delete_delay: 2h # is default
retention_delete_worker_count: 150 # is default
ingester:
max_chunk_age: 1h # default is 2h
lifecycler:
ring:
kvstore:
store: memberlist
analytics:
reporting_enabled: false