You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage-mover/log-monitoring.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,13 +61,13 @@ You log data is integrated into Storage Mover's Azure portal user interface (UI)
61
61
62
62
:::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." :::
63
63
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 .
65
65
66
66
:::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." :::
67
67
68
68
```kusto
69
69
StorageMoverCopyLogsFailed
70
-
| where TimeGenerated > ago(30d) and JobRunName == "[job run ID]"
70
+
| where TimeGenerated > ago(30d)
71
71
```
72
72
73
73
### Sample Kusto queries
@@ -78,10 +78,10 @@ The following sample queries provided can be entered in the **Log search** bar t
78
78
79
79
- To list all the files that failed to copy from a specific job run within the last 30 days.
80
80
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
+
```
85
85
86
86
- To list the 10 most common copy log error codes over the last seven days.
87
87
@@ -115,8 +115,8 @@ The following sample queries provided can be entered in the **Log search** bar t
0 commit comments