Forum Discussion
Admin O365
May 14, 2019Brass Contributor
ASR Reporting
a) How to Monitor VM that are ASR Protected to understand when they are offline in Primary Region and the DR Team has to enable ASR? b) Any DR report that provides information on DR performed fo...
- May 14, 2019
Hello Admin O365
ASR can send its diagnostic data to Log Analytics from there you can see status and messages etc...
See docs: https://docs.microsoft.com/en-us/azure/azure-monitor/platform/collect-azure-metrics-logs
AzureDiagnostics | where OperationName startswith "AzureSiteRecoveryEvent" | extend parseJSON = parse_json(healthErrors_s) | summarize count() by OperationName , ResourceProvider, affectedResourceName_s, tostring(parseJSON.[0].errorMessage)
You can run this query in the demo workspace from here
Which produces this output
CliveWatson
May 14, 2019Former Employee
Hello Admin O365
ASR can send its diagnostic data to Log Analytics from there you can see status and messages etc...
See docs: https://docs.microsoft.com/en-us/azure/azure-monitor/platform/collect-azure-metrics-logs
AzureDiagnostics | where OperationName startswith "AzureSiteRecoveryEvent" | extend parseJSON = parse_json(healthErrors_s) | summarize count() by OperationName , ResourceProvider, affectedResourceName_s, tostring(parseJSON.[0].errorMessage)
You can run this query in the demo workspace from here
Which produces this output