Closed
Description
- document the use of
tag
[1] (@jakelandis) ingest: add common options to each processor's documentation #35091 - call out which field/processors support templating [2] ingest: document fields that support templating #34536 (@jakelandis)
- raise visibility of the plugin processors [3] (@jakelandis) ingest: raise visibility of ingest plugin documentation #35048
- default pipeline and index settings [4] ingest: document index.default_pipeline #34500 (@jakelandis)
- Pipeline processor : INGEST: Document Pipeline Processor #33418 (@original-brownbear)
- Processor conditional: INGEST: Document Processor Conditional #33388 (@original-brownbear)
- Drop processor ingest: documentation for the drop processor #34570 (@jakelandis )
- Additional examples for conditionals. Regex, Drop, Pipelines (@jakelandis) ingest: extended
if
documentation #35044 - Calling processors from the script processor. (@jakelandis)
- Kibana console updates console: ingest node updates for auto-complete kibana#24100 and console: ingest node - add tag and update pipeline processor parameter kibana#24400 (@jakelandis)
- include some mention of
if
andon_failure
(maybe tag too?) on every processor's doc. ingest: add common options to each processor's documentation #35091
[1]
POST _ingest/pipeline/_simulate?verbose
{
"pipeline" :
{
"description": "_description",
"processors": [
{
"set" : {
"tag": "my_set1",
"field" : "field1",
"value" : "value1"
}
},
{
"set" : {
"tag": "my_set2",
"field" : "field2",
"value" : "value1"
}
}
]
},
"docs": [
{
"_index": "index",
"_type": "_doc",
"_id": "id",
"_source": {
"a": "foo-bar",
"b": "bar"
}
}
]
}
[2]
POST _ingest/pipeline/_simulate?verbose
{
"pipeline": {
"processors": [
{
"set": {
"field": "field1",
"value": "{{a}}"
}
}
]
},
"docs": [
{
"_index": "index",
"_type": "_doc",
"_id": "id",
"_source": {
"a": "foo-bar"
}
}
]
}
[3]
https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest-geoip.html
https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest-user-agent.html
https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest-attachment.html
https://www.elastic.co/guide/en/elastic-stack-overview/6.4/field-and-document-access-control.html#set-security-user-processor
[4]
#32286
#32591
https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules.html#index-modules-settings