Is there a way to add status column in resource view table to track the resourse status?

EmamulHasan 5 Reputation points
2023-09-06T11:19:35.4333333+00:00

Hi,

I can see my all resources in recourse view, but I want to track the status for all the recourses either it is UP or DOWN. So, I am looking for a solution for this.

Azure Resource Mover
Azure Resource Mover
An Azure service used for moving multiple resources between Azure regions.
224 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Monalla-MSFT 12,761 Reputation points
    2023-09-12T07:17:17.5533333+00:00

    @EmamulHasan - Welcome to Microsoft Q&A and thanks for reaching out to us.

    To my understanding, the "Status" column is not available in the resource view table in the Azure portal. However, you can still monitor the status of your resources using Azure Monitor,

    Alternatively, you can use Azure Resource Graph to query the status of your resources. It allows you to query your Azure resources using a SQL-like syntax. Here's an example query that you can use to get the status of all your resources:

    Resources
    | project name, type, location, subscriptionId, resourceGroup, properties.provisioningState
    

    This query will return a table that shows the name, type, location, subscription ID, resource group, and provisioning state of all your resources.

    I hope this helps. and please feel free to reach out if you have any further questions.


    If the above response was helpful, please feel free to "Accept as Answer" and click "Yes" so it can be beneficial to the community.