Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 339 Bytes

Custom_index.md

File metadata and controls

17 lines (15 loc) · 339 Bytes

Custom Index :

filebeat.yml conf:

output.elasticsearch:
  # Array of hosts to connect to.
  hosts: ["localhost:9200"]
  index: "custom-index"
setup.template.name: "custom-index"
setup.template.pattern: "custom-index-*"
setup.ilm.enabled: false

Check indicies:

curl -XGET 'SERVER IP/_cat/indices?pretty'