Reputation: 1530
I have a simple KQL query being run against my Application Insights resource for my Container Apps:
requests
| summarize totalCount=sum(itemCount) by application_Version, resultCode
| project application_Version, resultCode, totalCount
| order by application_Version asc, resultCode asc
Which gives me these results:
What I've been trying to do is have the rows with a 5xx
code be red and the ones with a 4xx
code be orange, but none of the instructions I've found work.
There are no Conditional Formatting options. There is no column setting to change the render to Threshold.
Is this because I'm using my query in an Azure Dashboard and not an Azure Workbook?
Upvotes: 0
Views: 41
Reputation: 11218
In workbook to get row color follow below steps:
Initial Table:
Firstly, Select Grid in Visualization and then click on column settings as below:
Output:
Upvotes: 0