How to drop the indexing event if the field is not integer ? in the below example i had used 123
it works . if i use abc
that event should drop.
POST _ingest/pipeline/_simulate
{
"docs": [
{
"_source": {
"message": """123"""}
}
],
"pipeline":{
"description" : "Messaging tracking ingestion",
"processors" : [
{
"convert" : {
"field" : "message",
"type" : "integer",
"ignore_missing" : true
}
}
]
}
}