Microsoft Azure - Find Virtual Machine Extensions using Resource Graph Query Last Updated : 31 Mar, 2023 Comments Improve Suggest changes Like Article Like Report Azure is Microsoft’s cloud platform, just like Google has its Google Cloud and Amazon has its Amazon Web Service or AWS.000. Generally, it is a platform through which we can use Microsoft’s resources. Here in this article, we are going to learn about how we find azure virtual machine-installed agents or extensions using the azure resource graph queries from the Azure portal. For this we don't need to set up any environment, we can directly run the azure resource graph queries in azure resource graph explorer. This will help us to save a lot of time finding analysis, and removals, and we can even export data lists into CSV or Excel. Implementation:Step 1: Open the Azure Portal. Step 2: From azure global search >> search for "Resource Graph Explorer" and select. Step 3: Next select the scope of your type, anyone out of Directory, Management, or Subscription, and click on Apply to make the changes. Step 4: After selecting the scope, go to the query section and add the following resource graph query >> Click on Run query the | where type == "microsoft.compute /virtualmachines/extensions"This query will return all the virtual machines installed extensions from the selected scope. Output: Step 5: To view only the selected virtual machine installed agents or extensions, use the following resource graph query to filter. resources | where type == "microsoft. compute/virtualmachines/extensions" | where tostring(id) has "<AzureVM_Name_Here>"This query will return all the virtual machines' installed extensions from only the queried virtual machine name. Output: Comment More infoAdvertise with us Next Article Microsoft Azure - Find Virtual Machine Extensions using Resource Graph Query jaysurya9 Follow Improve Article Tags : Microsoft Azure DevOps Cloud-Computing azure Similar Reads Microsoft Azure - Get Azure Subscription Details Using Resource Graph Query In this article, you will learn about how you can get the azure subscriptions' complete JSON information by running the following KQL Queries in Azure Resource Graph Explorer in Azure Portal. Let's get started by checking out the different queries with examples. Syntax: ResourceContainers | where ty 1 min read Microsoft Azure - Count of Azure Resources using Resource Graph Query Graph Query is Azure can be easier to understand if you are familiar with Querying languages like SQL. In this article, we will keep track of the Azure resources using the Resource Query graph. For this first open the Azure Resource Graph Explorer in Azure Portal to Run the following below Queries 1 3 min read Microsoft Azure - Resizing Virtual Machine Using PowerShell Script In this article, we will look into the process of resizing azure VMs at once using the Azure PowerShell automation script in the Azure portal by using the cloud shell. Advantages of using the method approach: Resizing Multiple VMs at once in a follow for select subscriptionSaves the time of the User 2 min read Microsoft Azure- Writing Queries and Creating Dashboards using Azure Resource Graph In this article, we are going to write an azure resource graph queries in azure workbooks and then we will pin it to Azure Dashboards. Implementation: Follow the below steps to implement the above problem statement: Step 1: Login into the Azure Portal. Step 2: Go to Azure Monitor Service or You can 2 min read Microsoft Azure - Track CPU Utilization of a Azure Virtual Machines using KQL Log Query In this article, we will look into the process of finding the Minimum, Average, and Maximum CPU Utilization of all Azure Virtual Machines using KQL Log Query. Here the Perf KQL Counter Operator is used to find Azure Virtual Machines performance from collected data logs. Implementation: Follow the be 4 min read Microsoft Azure - Check Virtual Machine Creation Date and Time Finding Azure Virtual Machine Creation Date and Time is not a property of any of the PowerShell or AZ CLI commands. But, with the help of disk creation date, we can find or get the Azure Virtual Machine Creation Date and Time. In this article, we will be using Azure PowerShell Command to get the res 2 min read Microsoft Azure - Get Storage Account Information using Resource Graph Prerequisite: Introduction to Microsoft Azure In this article, you will get to know how you can get information about azure storage accounts using the azure resource graph queries in a faster and simple way. The user should have read access to the management group subscriptions to fetch the data. He 2 min read Microsoft Azure - Check Resource Owner in Azure using KQL In this article, we will see how we can find the creation date of resources by using the Kusto Query Language. Azure KQL Queries helps in finding the resource creation date, time, created user email,...etc. Note: You cannot retrieve log data if it is more than 90 days using KQL. In this case store l 2 min read Virtual Machines in Microsoft Azure Before we move on with how to deploy and use virtual machines in Microsoft Azure let's know a few things. A Virtual Machine (VM) is like any physical laptop, smartphone, or server that we use in our day-to-day life. It has features like CPU, memory, storage size, and different networking ports with 4 min read Microsoft Azure - Resize a Azure Virtual Machine for Windows or Linux Servers In this article, we will look into the process of resizing Azure VM size for Linux and Windows servers. Implementation: Follow the below steps to resize a Azure Virtual Machine with new size. Note: The Process is same for both the Windows and Linux OS Servers. Step 1: Log in to Azure Portal. Step 2: 2 min read Like