栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何在logstash.conf文件中创建多个索引?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何在logstash.conf文件中创建多个索引?

您可以根据其中一个字段的值在索引名称中使用模式。在这里,我们使用

type
字段的值来命名索引:

output {      stdout {prec => rubydebug}      elasticsearch {          host => "localhost"          protocol => "http"          index => "%{type}_indexer"       }}

您还可以将多个

elasticsearch
输出用于同一ES主机或不同ES主机:

output {      stdout {prec => rubydebug}      elasticsearch {          host => "localhost"          protocol => "http"          index => "trial_indexer"       }    elasticsearch {          host => "localhost"          protocol => "http"          index => "movie_indexer"       }}

或者,您可能想根据某个变量将文档路由到不同的索引:

output {      stdout {prec => rubydebug}    if [type] == "trial" {        elasticsearch {   host => "localhost"   protocol => "http"   index => "trial_indexer"}    } else {        elasticsearch {   host => "localhost"   protocol => "http"   index => "movie_indexer"}    }}

更新

在Logstash 2和5中,语法有所变化:

output {      stdout {prec => rubydebug}    if [type] == "trial" {        elasticsearch {   hosts => "localhost:9200"   index => "trial_indexer"}    } else {        elasticsearch {   hosts => "localhost:9200"   index => "movie_indexer"}    }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/382904.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号