Ingest节点
node.ingest: true创建管道流
curl -XPUT http://localhost:9200/_ingest/pipeline/my-pipeline-id -d '
{
"description" : "describe pipeline",
"processors" : [
{
"convert" : {
"field": "foo",
"type": "integer"
}
}
]
}'测试管道流
处理器
convert
grok
gsub
date
其他处理器插件
Last updated