Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
Azure Impact Reporting is currently in Preview. See the Supplemental Terms of Use for Microsoft Azure Previews for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
Previously submitted impact reports and insights can be viewed through the REST API, in ARG (Azure Resource Graph Explorer) and the Azure portal.
Permissions needed
You need either the "Impact Reporter" role or read
action on Microsoft.Impact/WorkloadImpact/*
at the right scope (root, subscription, or resource group).
The following channels can be used to view Impact Reports and/or insights:
- REST API
- Query ARG
- Azure portal
View Impacts using REST API:
You can use the Impact Reporting REST API to view previously filed impact reports. Review the full REST API reference.
View a single Impact Report
az rest --method GET --url "https://management.azure.com/subscriptions/<Subscription_id>/providers/Microsoft.Impact/workloadImpacts/<impact_name>?api-version=2022-11-01-preview"
Response
{
"id": "/subscriptions/<Subscription_id>/providers/Microsoft.Impact/workloadImpacts/Impact02",
"name": "Impact02",
"type": "microsoft.impact/workloadimpacts",
"systemData": {
...
},
"properties": {
"impactedResourceId": "/subscriptions/<Subscription_id>/resourceGroups/<rg-name>/providers/Microsoft.Compute/virtualMachines/<vm-name>",
"startDateTime": "2022-11-14T05:59:46.6517821Z",
"endDateTime": null,
"impactDescription": "something's not right",
"impactCategory": "Resource.Performance",
"workload": {
"context": "myCompany/scenario1",
"toolset": "REST"
},
"provisioningState": "Succeeded",
"impactUniqueId": "1234n98-8dc8-4c52-8ce2-6fa86e6rs",
"reportedTimeUtc": "2022-11-14T20:55:38.7667873Z"
}
}