Skip to content

Commit b025efd

Browse files
committed
added log analytis content
1 parent f19b7d4 commit b025efd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage-mover/log-monitoring.md

Lines changed: 2 additions & 2 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 which will retrieve any .
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 details on any failed copy operations from the previous 60 days.
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)
70+
| where TimeGenerated > ago(60d)
7171
```
7272

7373
### Sample Kusto queries

0 commit comments

Comments
 (0)