Skip to content

Commit 216a96a

Browse files
Merge pull request #249787 from Sharmistha-Rai/main
Log analytics error correction
2 parents c4cf120 + 4cf1dcb commit 216a96a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/site-recovery/monitor-log-analytics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The churn and upload rate data will start feeding into the workspace.
7373
You retrieve data from logs using log queries written with the [Kusto query language](../azure-monitor/logs/get-started-queries.md). This section provides a few examples of common queries you might use for Site Recovery monitoring.
7474

7575
> [!NOTE]
76-
> Some of the examples use **replicationProviderName_s** set to **A2A**. This retrieves Azure VMs that are replicated to a secondary Azure region using Site Recovery. In these examples, you can replace **A2A** with **InMageAzureV2**, if you want to retrieve on-premises VMware VMs or physical servers that are replicated to Azure using Site Recovery.
76+
> Some of the examples use **replicationProviderName_s** set to **A2A**. This retrieves Azure VMs that are replicated to a secondary Azure region using Site Recovery. In these examples, you can replace **A2A** with **InMageRcm**, if you want to retrieve on-premises VMware VMs or physical servers that are replicated to Azure using Site Recovery.
7777
7878

7979
### Query replication health
@@ -238,7 +238,7 @@ This query plots a summary table for VMware VMs and physical servers replicated
238238

239239
```
240240
AzureDiagnostics 
241-
| where replicationProviderName_s == "InMageAzureV2"  
241+
| where replicationProviderName_s == "InMageRcm"  
242242
| where isnotempty(name_s) and isnotnull(name_s)  
243243
| summarize hint.strategy=partitioned arg_max(TimeGenerated, *) by name_s  
244244
| project VirtualMachine = name_s , Vault = Resource , ReplicationHealth = replicationHealth_s, Status = protectionState_s, RPO_in_seconds = rpoInSeconds_d, TestFailoverStatus = failoverHealth_s, AgentVersion = agentVersion_s, ReplicationError = replicationHealthErrors_s, ProcessServer = processServerName_g 
@@ -249,7 +249,7 @@ AzureDiagnostics 
249249
You can set up Site Recovery alerts based on Azure Monitor data. [Learn more](../azure-monitor/alerts/alerts-log.md#create-a-new-log-alert-rule-in-the-azure-portal) about setting up log alerts.
250250

251251
> [!NOTE]
252-
> Some of the examples use **replicationProviderName_s** set to **A2A**. This sets alerts for Azure VMs that are replicated to a secondary Azure region. In these examples, you can replace **A2A** with **InMageAzureV2** if you want to set alerts for on-premises VMware VMs or physical servers replicated to Azure.
252+
> Some of the examples use **replicationProviderName_s** set to **A2A**. This sets alerts for Azure VMs that are replicated to a secondary Azure region. In these examples, you can replace **A2A** with **InMageRcm** if you want to set alerts for on-premises VMware VMs or physical servers replicated to Azure.
253253
254254
### Multiple machines in a critical state
255255

0 commit comments

Comments
 (0)