xpack-indices.asciidoc 1.1 KB

1234567891011121314151617181920
  1. By default, {es} is configured to allow automatic index creation, and no
  2. additional steps are required. However, if you have disabled automatic index
  3. creation in {es}, you must configure
  4. <<index-creation,`action.auto_create_index`>> in `elasticsearch.yml` to allow
  5. {xpack} to create the following indices:
  6. [source,yaml]
  7. -----------------------------------------------------------
  8. action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*
  9. -----------------------------------------------------------
  10. [IMPORTANT]
  11. =============================================================================
  12. If you are using https://www.elastic.co/products/logstash[Logstash]
  13. or https://www.elastic.co/products/beats[Beats] then you will most likely
  14. require additional index names in your `action.auto_create_index` setting, and
  15. the exact value will depend on your local configuration. If you are unsure of
  16. the correct value for your environment, you may consider setting the value to
  17. `*` which will allow automatic creation of all indices.
  18. =============================================================================