Hi,
I want to visualize the number of requests with the color code to represent whether it's within the expected range as per the current time. Based on the time, max and min thresholds will be changed. Sample documents is like below,
At 10:05 AM
{
"API Name" : "API 1",
"Requests For Last Minute": "32",
"Max Threshold" : "39",
"Min Threshold" : "28",
"Within Threshold" : true
"DataPoint" : "2020-02-27 10:05:00"
}
At 09:10 AM
{
"API Name" : "API 1",
"Requests For Last Minute": "38",
"Max Threshold" : "37",
"Min Threshold" : "28",
"Within Threshold" : false
"DataPoint" : "2020-02-27 09:10:00"
}
So I want change the color of the visualization to green in first case, and red in the second case.
Any idea how to do this? It seems Kibana only allows to change the color based on the static thresholds on the same filed that we visualize. In this case I want to visualize the number based on the field "Requests For Last Minute", but decide the color based on the "Within Threshold"
Thanks