How to 'pin to dashboard' when the 'pin to a dashboard' button is missing (Azure monitor, in the 'Container' blade)

Huu Quang Nguyen 1 Reputation point
2022-03-15T10:48:41.72+00:00

I would like to pin information to Dashboard.
In Azure monitor, in the 'Container' blade (under 'insights'), the 'pin to a dashboard' button is missing.
Is there a queries/workbooks behind that can be used to get the same summary?
How can I report this missing button to Azure, the other blades have the 'pin to dashboard' button?

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
3,037 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Andrew Blumhardt 9,776 Reputation points Microsoft Employee
    2022-03-15T11:37:21.757+00:00

    This would probably be a custom workbook that queries the resource graph. Look in the Resource Graph Explorer under resources>microsoft.containerinstance/containergroups

    resources
    | where type == "microsoft.containerinstance/containergroups"


  2. SwathiDhanwada-MSFT 18,556 Reputation points
    2022-03-30T13:00:57.557+00:00

    @Huu Quang Nguyen Welcome to Microsoft Q & A Community Forum. I understand that you are trying to pin the charts that were displayed in the Insights tab of the Kubernetes resource. I have verified from my end, and I could see that the pin option is available. Sharing the reference of the same. Do comment if you are not able to see the pin icon in Azure portal.

    188308-image.png

    For the queries used for visualization, you can check the built-in workbooks as mentioned by Andrew by selecting the drop-down menu of "View Workbooks" as shown in below image.

    188386-image.png

    If in case, you would like to customize the queries, you can update container insights to update the metrics and write those metrics to Azure Monitor metrics store to query the data. With this, you can present timely aggregate calculations (average, count, maximum, minimum, sum) in performance charts, pin performance charts in Azure portal dashboards, and take advantage of metric alerts. For more information, kindly check this document.

    0 comments No comments