Skip to content

Commit 53a8617

Browse files
committed
Added TOC node per publishing team
1 parent 1807ead commit 53a8617

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/storage-mover/TOC.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ items:
4141
expanded: true
4242
- name: Resources
4343
items:
44-
- name: Troubleshooting job run error codes
44+
- name: Monitor copy and job run logs
45+
href: log-monitoring.md
46+
- name: Troubleshoot job run error codes
4547
href: status-code.md
4648
- name: Collect a support bundle
4749
href: troubleshooting.md
4850
- name: Release notes
4951
href: release-notes.md
50-
51-

articles/storage-mover/log-monitoring.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Monitoring Copy Logs in Azure Storage Mover
2+
title: Monitor copy logs in Azure Storage Mover
33
description: Learn how to monitor the status of Azure Storage Mover migration jobs.
44
author: stevenmatthew
55
ms.author: shaas
@@ -12,10 +12,10 @@ ms.date: 03/20/2023
1212

1313
When you use a migration tool to move your critical data from on-premises sources to Azure destination targets, you want to be able to monitor operations for potential issues. The data relating to the operations performed during your migration can be stored as either logs entries or metrics. When configured, Azure Storage Mover can provide **Copy logs** and **Job run logs**. These logs are especially useful because they allow you to trace the migration result of job runs and of individual files.
1414

15-
Both the copy and job run logs can be sent to an Azure Analytics Workspace. Analytics workspaces are storage units where log data generated by Azure services are stored. Log Analytics is also integrated into the Storage Mover portal experience. This integration allows you to create and run log queries from multiple logs and interactively analyze their results.
15+
Both the copy and job run logs can be sent to an Azure Analytics Workspace. Analytics workspaces are storage units where Azure services store the log data they generate. Log Analytics is integrated into the Storage Mover portal experience. This integration allows you to see the relevant logs for your copy jobs within the same surface you use to manage them. Perhaps more importantly, the integration also allows you to create and run log queries from multiple logs and interactively analyze their results.
1616

1717
> [!IMPORTANT]
18-
> Before you can access your migration's log data, you need to ensure that you've created an Azure Analytics Workspace and configured your Storage Mover instance to use it. It's important to complete the steps described within this article before running your migration jobs to collect the resulting data. Any migration log data generated prior to configuration will not be accessible.
18+
> Before you can access your migration's log data, you need to ensure that you've created an Azure Analytics Workspace and configured your Storage Mover instance to use it. Any logs generated prior to this configuration will be lost. You may be able to retrieve limited log information directly from the agent.
1919
2020
This article describes the steps involved in creating an analytics workspace and to configure a diagnostic setting within a storage mover resource.
2121

@@ -25,7 +25,7 @@ This section briefly describes how to configure an Azure Monitor Log Analytics W
2525

2626
### Create a Log Analytics workspace
2727

28-
Storage Mover collects copy and job logs, and stores the information in an Azure Log Analytics workspace. You can create multiple workspaces, but each workspace must have a unique workspace ID and resource ID for a given resource group. After you've created a workspace, you can configure Storage Mover to save its data there. If you don't have an existing workspace, you can quickly create one in the Azure portal.
28+
Storage Mover collects copy and job logs, and stores the information in an Azure Log Analytics workspace. After you've created a workspace, you can configure Storage Mover to save its data there. If you don't have an existing workspace, you can create one in the Azure portal.
2929

3030
Enter **Log Analytics** in the search box and select **Log Analytics workspace**. In the content pane, select either **Create** or **Create log analytics workspace** to create a workspace. Provide values for the **Subscription**, **Resource Group**, **Name**, and **Region** fields, and select **Review + Create**.
3131

@@ -57,7 +57,7 @@ All resource logs in Azure Monitor have the same fields, and are followed by ser
5757

5858
Storage Mover generates two tables, StorageMoverCopyLogsFailed and StorageMoverJobRunLogs. The schema for **StorageMoverCopyLogsFailed** is found in the [Azure Storage Copy log data reference](/azure/azure-monitor/reference/tables/StorageMoverCopyLogsFailed), and the schema for **StorageMoverJobRunLogs** is found in the [Azure Storage Job run log data reference](/azure/azure-monitor/reference/tables/StorageMoverJobRunLogs).
5959

60-
You log data is integrated into Storage Mover's Azure portal user interface (UI) experience. To access your log data, migrate to your top-level storage mover resource and select **Logs** from within the **Monitoring** group in the navigation pane. Close the initial **Welcome to Log Analytics** window displayed in the main content pane as shown in the following example.
60+
Your log data is integrated into Storage Mover's Azure portal user interface (UI) experience. To access your log data, migrate to your top-level storage mover resource and select **Logs** from within the **Monitoring** group in the navigation pane. Close the initial **Welcome to Log Analytics** window displayed in the main content pane as shown in the following example.
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

@@ -67,7 +67,7 @@ After the **Welcome** window is closed within the main content pane, the **New Q
6767

6868
```kusto
6969
StorageMoverCopyLogsFailed
70-
| where TimeGenerated > ago(60d)
70+
| top 1000 by timeGenerated desc
7171
```
7272

7373
### Sample Kusto queries

0 commit comments

Comments
 (0)