Hi,
I'm trying to create a simple visualization:
it's a chart line but where I want to consider in the aggregation only the logs that have to equal fields (that in this case are keyword).
I'm able to create the ES query but I need to plot it.
{
"query": {
"bool": {
"must": [
{ "exists": { "field":"A"}},
{ "script" : {
"script" : "doc['A.keyword'].value != doc['B.keyword'].value"
}
}
]
}
}
}
Thank you
