Hi,
I can get the data required using Kibana devtool using sql query.
POST _sql?format=txt
{
"query": "SELECT transactionID.keyword, max(responseTime) FROM "test-logs" GROUP BY transactionID.keyword HAVING count(transactionID.keyword)=2 "
}
But I want to display the graphs for transactions with responseTime taken. Can someone help with lucene query for it?
