I created a table that outputs the organization, threshold, count, and response time. If the response time is greater than the threshold, then I want the response time value to turn red. However, the threshold is different for every organization. Is there a way to dynamically set the threshold on the table for the Response Time column to turn red based on its respective threshold. For example, organization A will have a threshold of 3, while organization B will have a threshold of 10. I want the table to display all the organizations,count, the response time, and the threshold. index | stats count as "volume" avg as "avg_value" by organization, _time, threshold Kindly help.
... View more