loki config

develop
bvn13 2023-04-10 15:17:37 +03:00
parent a885b0de21
commit 9eef060f8a
2 changed files with 51 additions and 1 deletions

View File

@ -19,11 +19,14 @@ services:
loki:
image: grafana/loki:2.8.0
container_name: monitoring-loki
command: -config.file=/etc/loki/local-config.yaml
command: -config.file=/etc/loki/loki-config.yaml
ports:
- "3100:3100"
networks:
- logging
volumes:
- ./loki/loki-config.yaml:/etc/loki/loki-config.yaml
- /var/lib/monitoring/loki:/loki
grafana:
image: grafana/grafana:9.4.7

View File

@ -0,0 +1,47 @@
auth_enabled: false
server:
http_listen_port: 3100
common:
path_prefix: /loki
storage:
filesystem:
chunks_directory: /loki/chunks
rules_directory: /loki/rules
replication_factor: 1
ring:
kvstore:
store: inmemory
schema_config:
configs:
- from: 2020-10-24
store: boltdb-shipper
object_store: filesystem
schema: v11
index:
prefix: index_
period: 24h
ruler:
alertmanager_url: http://localhost:9093
limits_config:
ingestion_rate_mb: 10
ingestion_burst_size_mb: 15
per_stream_rate_limit: 5MB
# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration
# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/
#
# Statistics help us better understand how Loki is used, and they show us performance
# levels for most users. This helps us prioritize features and documentation.
# For more information on what's sent, look at
# https://github.com/grafana/loki/blob/main/pkg/usagestats/stats.go
# Refer to the buildReport method to see what goes into a report.
#
# If you would like to disable reporting, uncomment the following lines:
#analytics:
# reporting_enabled: false