Search code examples
azureazure-application-insightsazure-monitor-workbooks

Azure Monitor - Barchart Stacked100


I am trying to create an Azure Monitor Workbook "step" to create a stacked100 graph.

This is easily achieved in Azure App Insights, but the same query refuses to render as a 100% graph and just gives a standard column chart

Using APP INSIGHTS LOGS pane

requests
| where name == "****"
| where url  == "****"
| summarize good=countif(duration < 30000), exceptions=countif(duration >= 30000) by bin(timestamp, 1h)
| render columnchart kind=stacked100

App Insights

Using Azure Monitor Workbook

Query is EXCACTLY the same as above

Workbook step settings

enter image description here

Azure Monitor Workbook

Question: Is Stacked 100% not supported in Workbooks?


Solution

  • Workbooks itself does not have a stacked100 version of the chart (not all of the options supported by the render operation are supported in workbooks)

    In workbooks you'd have to compute the %'s yourself to create a stacked 100 chart