Announcing the General Availability of Change Actor
Published Jun 19 2024 09:53 AM 2,879 Views
Microsoft

Change Analysis 

Identifying who made a change to your Azure resources and how the change was made just became easier! With Change Analysis, you can now see who initiated the change and with which client that change was made, for changes across all your tenants and subscriptions.  

 

Audit, troubleshoot, and govern at scale   

Changes should be available in under five minutes and are queryable for fourteen days. In addition, this support includes the ability to craft charts and pin results to Azure dashboards based on specific change queries.   

 

What’s new: Actor Functionality   

  • Who made the change 
    • This can be either ‘AppId’ (client or Azure service) or email-ID of the user 
    • changedBy: elizabeth@contoso.com 
  •        With which client the change was made 
    • clientType: Azure Portal 

 

Try it out 

You can try it out by querying the “resourcechanges” or “resourcecontainerchanges” tables in Azure Resource Graph.  

 

Sample Queries  

Here is documentation on how to query resourcechanges and resourcecontainerchanges in Azure Resource Graph. Get resource changes - Azure Resource Graph | Microsoft Learn  

  

The following queries all show changes made within the last 7 days.  

Summarization of who and which client were used to make resource changes in the last 7 days ordered by the number of changes  

  

resourcechanges  

| extend changeTime = todatetime(properties.changeAttributes.timestamp),   

changeType = tostring(properties.changeType), changedBy = tostring(properties.changeAttributes.changedBy),  

changedByType = properties.changeAttributes.changedByType,  

clientType = tostring(properties.changeAttributes.clientType)  

| where changeTime > ago(7d)  

| project changeType, changedBy, changedByType, clientType  

| summarizecount() by changedBy, changeType, clientType  

| orderby count_ desc  

  

Summarization of who and what operations were used to make resource changes ordered by the number of changes  

 

resourcechanges   

| extend operation = tostring(properties.changeAttributes.operation),   

changeType = tostring(properties.changeType), changedBy = tostring(properties.changeAttributes.changedBy)   

| project changeType, changedBy, operation   

| summarizecount() by changedBy, operation   

| orderby count_ desc

 

List resource container (resource group, subscription, and management group) changes. who made the change, what client was used, and which operation was called, ordered by the time of the change 

  

resourcecontainerchanges  

| extend changeTime = todatetime(properties.changeAttributes.timestamp),  

targetResourceId = tostring(properties.targetResourceId),  

operation=tostring(properties.changeAttributes.operation),  

changeType = tostring(properties.changeType), changedBy = tostring(properties.changeAttributes.changedBy),  

changedByType = properties.changeAttributes.changedByType,  

clientType = tostring(properties.changeAttributes.clientType)  

project changeTime, changeType, changedBy, changedByType, clientType, operation, targetResourceId  

| orderby changeTime desc  

 

FAQ  

How do I use Change Analysis?  

Change Analysis can be used by querying the resourcechanges or resourcecontainerchanges tables in Azure Resource Graph, such as with Azure Resource Graph Explorer in the Azure Portal, through the Azure Resource Graph APIs or by using the Change Analysis Portal Experience

More information can be found here: Get resource changes - Azure Resource Graph | Microsoft Learn.  

   

What does unknown mean?  

Unknown is displayed when the change happened on a client that is unrecognized. Clients are recognized based on the user agent and client application id associated with the original change request. 

 

What does System mean? 

System is displayed as a changedBy value when a background change occurred that wasn’t correlated with any direct user action. 

 

What resources are included?  
Resources in the resources and resourcecontainers tables are included. You can try it out by querying the “resourcechanges” or “resourcecontainerchanges” tables in Azure Resource Graph.  

 

Questions and Feedback  

 

 

3 Comments
Co-Authors
Version history
Last update:
‎Jun 20 2024 11:24 AM
Updated by: