【发布时间】:2015-11-20 06:41:12
【问题描述】:
我使用以下代码在 logstash.conf 中创建了一个索引
output {
stdout {codec => rubydebug}
elasticsearch {
host => "localhost"
protocol => "http"
index => "trial_indexer"
}
}
要创建另一个索引,我通常将上面代码中的索引名称替换为另一个索引名称。有没有办法在同一个文件中创建多个索引?我是 ELK 的新手。
【问题讨论】:
标签: elasticsearch logstash kibana