You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

elastic.conf 848B

123456789101112131415161718192021
  1. elastic {
  2. # Push update when 10 records are collected (10 if unset)
  3. limit = 10;
  4. # IP:port of Elasticsearch server
  5. #server = "localhost:9200";
  6. # Timeout to wait for response (5 seconds if unset)
  7. timeout = 5;
  8. # Elasticsearch template file (json format)
  9. #template_file = "${SHAREDIR}/elastic/rspamd_template.json";
  10. # Kibana prebuild visualizations and dashboard template (json format)
  11. #kibana_file = "${SHAREDIR}/elastic/kibana.json";
  12. # Elasticsearch index name pattern
  13. index_pattern = "rspamd-%Y.%m.%d";
  14. # Dump debug information
  15. debug = false;
  16. # Import kibana template
  17. import_kibana = false;
  18. .include(try=true,priority=5) "${DBDIR}/dynamic/elastic.conf"
  19. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/elastic.conf"
  20. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/elastic.conf"
  21. }