I want to render specific requests from my Application Insights as a columnchart using Log Analytics query language:
My Query:
requests
| where operation_Name == "MyOperationName"
| render columnchart
Output:
I would like to have different colors for successful and unsuccessful requests. There is already a boolean column ("success") available. How can I use that property to set specific colors?