Hello,
I'm knew to kibana , working on school project ,
I'm looking to delete specific documents in my index
POST data/_delete_by_query
{
"query": {
"range": {
"elapsed_time": {
"lte": "2019-03-01"
}
}
}
}
but i would like to select specific tag :
"tags.keyword" match 0 ,
any thoughts about this ??
thanks a lot in advance