Skip to content

Commit 953a2eb

Browse files
committed
added log analytis content
1 parent 8d6f620 commit 953a2eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/storage-mover/log-monitoring.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ You log data is integrated into Storage Mover's Azure portal user interface (UI)
6161

6262
:::image type="content" source="media/log-monitoring/logs-splash-sml.png" lightbox="media/log-monitoring/logs-splash-lrg.png" alt-text="This image illustrates the selections required to open the Logs pane and close the splash screen." :::
6363

64-
After the **Welcome** window is closed within the main content pane, the **New Query** window is displayed. In the schema and filter pane, ensure that the **Tables** object is selected and that the **StorageMoverCopyLogsFailed** and **StorageMoverJobRunLogs** tables are visible. Using Kusto Query Language (KQL) queries, you can begin extracting log data from the tables displayed within the schema and filter pane. Enter your query into the query editing field and select **Run** as shown in the following screen capture. A simple query example is also provided.
64+
After the **Welcome** window is closed within the main content pane, the **New Query** window is displayed. In the schema and filter pane, ensure that the **Tables** object is selected and that the **StorageMoverCopyLogsFailed** and **StorageMoverJobRunLogs** tables are visible. Using Kusto Query Language (KQL) queries, you can begin extracting log data from the tables displayed within the schema and filter pane. Enter your query into the query editing field and select **Run** as shown in the following screen capture. A simple query example is also provided which will retrieve any .
6565

6666
:::image type="content" source="media/log-monitoring/logs-query-sml.png" lightbox="media/log-monitoring/logs-query-lrg.png" alt-text="This image identifies the panes within the Log Analytics schema and filter page." :::
6767

6868
```kusto
6969
StorageMoverCopyLogsFailed
70-
| where TimeGenerated > ago(30d) and JobRunName == "[job run ID]"
70+
| where TimeGenerated > ago(30d)
7171
```
7272

7373
### Sample Kusto queries
@@ -78,10 +78,10 @@ The following sample queries provided can be entered in the **Log search** bar t
7878

7979
- To list all the files that failed to copy from a specific job run within the last 30 days.
8080

81-
```kusto
82-
StorageMoverCopyLogsFailed
83-
| where TimeGenerated > ago(30d)
84-
```
81+
```kusto
82+
StorageMoverCopyLogsFailed
83+
| where TimeGenerated > ago(30d) and JobRunName == "[job run ID]"
84+
```
8585

8686
- To list the 10 most common copy log error codes over the last seven days.
8787

@@ -115,8 +115,8 @@ The following sample queries provided can be entered in the **Log search** bar t
115115
116116
Get started with any of these guides.
117117
118-
- [Log Analytics workspaces](../azure-monitor/logs/log-analytics-workspace-overview)
118+
- [Log Analytics workspaces](../azure-monitor/logs/log-analytics-workspace-overview.md)
119119
- [Azure Monitor Logs overview](../azure-monitor/logs/data-platform-logs.md)
120-
- [Diagnostic settings in Azure Monitor](../azure-monitor/essentials/diagnostic-settings?tabs=portal)
120+
- [Diagnostic settings in Azure Monitor](../azure-monitor/essentials/diagnostic-settings?tabs=portal.md)
121121
- [Azure Storage Mover support bundle overview](troubleshooting.md)
122122
- [Troubleshooting Storage Mover job run error codes](status-code.md)

0 commit comments

Comments
 (0)