config.yaml.j2 675 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. auth_enabled: false
  3. server:
  4. http_listen_port: 3100
  5. common:
  6. instance_addr: 127.0.0.1
  7. path_prefix: /loki
  8. storage:
  9. filesystem:
  10. chunks_directory: /loki/chunks
  11. rules_directory: /loki/rules
  12. replication_factor: 1
  13. ring:
  14. kvstore:
  15. store: inmemory
  16. schema_config:
  17. configs:
  18. - from: 2020-10-24
  19. store: tsdb
  20. object_store: filesystem
  21. schema: v13
  22. index:
  23. prefix: index_
  24. period: 24h
  25. limits_config:
  26. retention_period: "{{ data_retention_days }}d"
  27. ingestion_rate_mb: 4
  28. ingestion_burst_size_mb: 6
  29. max_streams_per_user: 10000
  30. max_line_size: 256000
  31. ruler:
  32. alertmanager_url: http://localhost:9093