config.yaml 749 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. # NOTE: Data Retention is set to 7 days.
  27. # This is the default value and can be changed
  28. retention_period: 168h
  29. ingestion_rate_mb: 4
  30. ingestion_burst_size_mb: 6
  31. max_streams_per_user: 10000
  32. max_line_size: 256000
  33. ruler:
  34. alertmanager_url: http://localhost:9093