xpack-indices.asciidoc 1.2 KB

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