Skip to content

Commit bf7bbd5

Browse files
Third batch of fixes (10 files) to broken internal links
1 parent 378731a commit bf7bbd5

10 files changed

+18
-18
lines changed

articles/application-insights/app-insights-profiler-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Running Profiler on premises isn't officially supported, but we do have some [in
3434

3535
## View profiler data
3636

37-
In order for the profiler to upload traces, your application actively handling requests. If you're doing an experiment, you can generate requests to your web app using [Application Insights Performance Testing](https://docs.microsoft.com/vsts/load-test/app-service-web-app-performance-test). If you've newly enabled Profiler, you can run a short load test. While the load test is running, press the **Profile Now** button in the [**Profiler Settings page**](). Once profiler is running, it will profile randomly about once every hour and for a duration of two minutes. If your application is handling a steady stream of requests, Profiler will upload traces every hour.
37+
In order for the profiler to upload traces, your application actively handling requests. If you're doing an experiment, you can generate requests to your web app using [Application Insights Performance Testing](https://docs.microsoft.com/vsts/load-test/app-service-web-app-performance-test). If you've newly enabled Profiler, you can run a short load test. While the load test is running, press the **Profile Now** button in the [**Profiler Settings page**](app-insights-profiler-settings.md#profiler-settings-page). Once profiler is running, it will profile randomly about once every hour and for a duration of two minutes. If your application is handling a steady stream of requests, Profiler will upload traces every hour.
3838

3939
After your application receives some traffic and the profiler has had time to upload the trances, you should have traces to view. This process can take 5 to 10 minutes. To view traces, go to the **Performance** pane, select **Take Actions** to view profiler traces, and then select the **Profiler Traces** button.
4040

articles/azure-maps/map-add-controls.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This article shows you how to add map controls to a map. You will also learn how
2121

2222
The first code block sets the subscription key and creates a Map object without pre-setting the style. See [create a map](./map-create.md) for instructions on how to create a map.
2323

24-
Zoom control adds the ability to zoom in and out of the map. The second code block creates a Zoom Control object using the atlas [ZoomControl](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.zoomcontrol?view=azure-iot-typescript-latest) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. The Zoom control is within the map **event listener** to ensure it loads after the map loads fully.
24+
Zoom control adds the ability to zoom in and out of the map. The second code block creates a Zoom Control object using the atlas [ZoomControl](/javascript/api/azure-maps-control/atlas.controls.zoomcontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. The Zoom control is within the map **event listener** to ensure it loads after the map loads fully.
2525

2626
## Add pitch control
2727

@@ -30,7 +30,7 @@ Zoom control adds the ability to zoom in and out of the map. The second code blo
3030

3131
The first code block sets the subscription key and creates a Map object without pre-setting the style. See [create a map](./map-create.md) for instructions on how to create a map.
3232

33-
Pitch control adds the ability to change the pitch of the map. The second block of code creates a Pitch Control object using the atlas [PitchControl](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.pitchcontrol?view=azure-iot-typescript-latest) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. The Pitch control is within the map **event listener** to ensure it loads after the map loads fully.
33+
Pitch control adds the ability to change the pitch of the map. The second block of code creates a Pitch Control object using the atlas [PitchControl](/javascript/api/azure-maps-control/atlas.controls.pitchcontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. The Pitch control is within the map **event listener** to ensure it loads after the map loads fully.
3434

3535
## Add compass control
3636

@@ -39,7 +39,7 @@ Pitch control adds the ability to change the pitch of the map. The second block
3939

4040
The first code block sets the subscription key and creates a Map object without pre-setting the style. See [create a map](./map-create.md) for instructions on how to create a map.
4141

42-
The second block of code creates a Compass Control object using the atlas [Compass Control](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.compasscontrol?view=azure-iot-typescript-latest#compasscontrol). It also adds the compass control to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. The Compass control is within the map **event listener** to ensure it loads after the map loads fully.
42+
The second block of code creates a Compass Control object using the atlas [Compass Control](/javascript/api/azure-maps-control/atlas.controls.compasscontrol). It also adds the compass control to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. The Compass control is within the map **event listener** to ensure it loads after the map loads fully.
4343

4444
## A Map with all controls
4545

@@ -48,13 +48,13 @@ The second block of code creates a Compass Control object using the atlas [Compa
4848

4949
The first code block sets the subscription key and creates a Map object without pre-setting the style. See [create a map](./map-create.md) for instructions on how to create a map.
5050

51-
The second code block creates a Compass Control object using the atlas [CompassControl](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.compasscontrol?view=azure-iot-typescript-latest#compasscontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method.
51+
The second code block creates a Compass Control object using the atlas [CompassControl](/javascript/api/azure-maps-control/atlas.controls.compasscontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method.
5252

53-
The third block of code creates a Zoom Control object using the atlas [ZoomControl](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.zoomcontrol?view=azure-iot-typescript-latest) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method.
53+
The third block of code creates a Zoom Control object using the atlas [ZoomControl](/javascript/api/azure-maps-control/atlas.controls.zoomcontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method.
5454

55-
The fourth code block creates a Pitch Control object using the atlas [PitchControl](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.pitchcontrol?view=azure-iot-typescript-latest) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method.
55+
The fourth code block creates a Pitch Control object using the atlas [PitchControl](/javascript/api/azure-maps-control/atlas.controls.pitchcontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method.
5656

57-
The last block of code creates a Style Picker object by using the atlas [StyleControl](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.control.stylecontrol?view=azure-iot-typescript-latest#stylecontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. All of the control objects are added within the map **event listener** to ensure that they load after the map loads fully.
57+
The last block of code creates a Style Picker object by using the atlas [StyleControl](/javascript/api/azure-maps-control/atlas.controls.stylecontrol) and adds it to the map using map's [controls.add](https://docs.microsoft.com/javascript/api/azure-maps-control/atlas.map?view=azure-iot-typescript-latest#addcontrol) method. All of the control objects are added within the map **event listener** to ensure that they load after the map loads fully.
5858

5959
The order of the control objects in the script dictates the order in which they appear on the map. To change the order of the controls on the map, you can change their order in the script.
6060

articles/cosmos-db/sql-api-nodejs-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The [app.js](https://github.com/Azure/azure-cosmos-js/blob/master/samples/IndexM
9292
| [Create a container with default indexPolicy, then update this online](https://github.com/Azure/azure-cosmos-js/blob/216672a679ab389e5b341280eeacab1cab3691e4/samples/IndexManagement/app.js#L435-L507) |[Containers.create](https://docs.microsoft.com/javascript/api/%40azure/cosmos/containers?view=azure-node-latest#create)
9393

9494

95-
For more information about indexing, see [Azure Cosmos DB indexing policies](indexing-policies.md).
95+
For more information about indexing, see [Azure Cosmos DB indexing policies](index-policy.md).
9696

9797
## Server-side programming examples
9898
The [app.js](https://github.com/Azure/azure-cosmos-js/blob/master/samples/ServerSideScripts/app.js) file of the [ServerSideScripts](https://github.com/Azure/azure-cosmos-js/tree/master/samples/ServerSideScripts) project shows how to perform the following tasks.

articles/cosmos-db/working-with-dates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Range queries are common with DateTime values. For example, if you need to find
6464
collection.IndexingPolicy = new IndexingPolicy(new RangeIndex(DataType.String) { Precision = -1 });
6565
await client.CreateDocumentCollectionAsync("/dbs/orderdb", collection);
6666

67-
You can learn more about how to configure indexing policies at [Azure Cosmos DB Indexing Policies](indexing-policies.md).
67+
You can learn more about how to configure indexing policies at [Azure Cosmos DB Indexing Policies](index-policy.md).
6868

6969
## Querying DateTimes in LINQ
7070
The SQL .NET SDK automatically supports querying data stored in Azure Cosmos DB via LINQ. For example, the following snippet shows a LINQ query that filters orders that were shipped in the last three days.
@@ -82,4 +82,4 @@ In this article, we looked at how to store, index, and query DateTimes in Azure
8282
## Next Steps
8383
* Download and run the [Code samples on GitHub](https://github.com/Azure/azure-documentdb-dotnet/tree/master/samples/code-samples)
8484
* Learn more about [SQL queries](sql-api-sql-query.md)
85-
* Learn more about [Azure Cosmos DB Indexing Policies](indexing-policies.md)
85+
* Learn more about [Azure Cosmos DB Indexing Policies](index-policy.md)

articles/germany/germany-migration-networking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Get-AzureRmNetworkSecurityRuleConfig -NetworkSecurityGroup $nsg
6969

7070
### Next steps
7171

72-
- Refresh your [knowledge about Network Security Groups](/virtual-network/security-overview.md#network-security-groups).
72+
- Refresh your [knowledge about Network Security Groups](../virtual-network/security-overview.md#network-security-groups).
7373

7474
### References
7575

articles/germany/germany-migration-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,5 @@ For PowerShell follow [this article](../backup/backup-azure-vms-automation.md#cr
139139

140140
### Links
141141

142-
- Export to disk [via API](/rest/api/compute/disks/grantaccess.md) by getting a SAS URI
143-
- Create a managed disk [via API](/rest/api/compute/disks/createorupdate.md#create_a_managed_disk_by_importing_an_unmanaged_blob_from_a_different_subscription) from an unmanaged blob
142+
- Export to disk [via API](/rest/api/compute/disks/grantaccess) by getting a SAS URI
143+
- Create a managed disk [via API](/rest/api/compute/disks/createorupdate#create_a_managed_disk_by_importing_an_unmanaged_blob_from_a_different_subscription.) from an unmanaged blob

articles/lab-services/devtest-lab-guidance-governance-cost-ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The DevTest Labs resource should be owned by owners who are close to the project
5454

5555
The project/application team members should be added to the DevTest Labs Users role. These users can create virtual machines (in-line with the lab and subscription-level policies). They can also manage their own virtual machines. They can't manage virtual machines that belong to other users.
5656

57-
For more information, see [Azure enterprise scaffold – prescriptive subscription governance](/architecture/cloud-adoption/appendix/azure-scaffold) documentation.
57+
For more information, see [Azure enterprise scaffold – prescriptive subscription governance](/azure/architecture/cloud-adoption/appendix/azure-scaffold) documentation.
5858

5959

6060
## Next steps

articles/virtual-machines/troubleshooting/troubleshoot-ssh-connection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Try these steps to resolve the most common SSH connection failures for VMs that
238238
* Redeploy the VM to a new Azure node. For information about how to redeploy a VM, see [Redeploy virtual machine to new Azure node](../windows/redeploy-to-new-node.md?toc=%2fazure%2fvirtual-machines%2fwindows%2ftoc.json).
239239

240240
After this operation finishes, ephemeral disk data will be lost and dynamic IP addresses that are associated with the virtual machine will be updated.
241-
* Follow the instructions in [How to reset a password or SSH for Linux-based virtual machines](../linux/classic/reset-access-classic.md?) to:
241+
* Follow the instructions in [How to reset a password or SSH for Linux-based virtual machines](../linux/classic/reset-access-classic.md) to:
242242

243243
* Reset the password or SSH key.
244244
* Create a *sudo* user account.

articles/vpn-gateway/scripts/vpn-gateway-sample-site-to-site-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ This script uses the following commands to create the deployment. Each item in t
103103
| [New-AzureRmVirtualNetworkGatewayIpConfig](/powershell/module/azurerm.network/new-azurermvirtualnetworkgatewayipconfig) | Creates a new gateway ip configuration. |
104104
| [New-AzureRmVirtualNetworkGateway](https://docs.microsoft.com/powershell/module/azurerm.network/new-azurermvirtualnetworkgateway?view=azurermps-6.8.1) | Creates a VPN gateway. |
105105
| [New-AzureRmLocalNetworkGateway](https://docs.microsoft.com/powershell/module/azurerm.network/new-azurermlocalnetworkgateway?view=azurermps-6.8.1) | Creates a local network gateway. |
106-
| [New-AzureRmVirtualNetworkGatewayConnection](/powershell/module/azurerm.resources/new-azurermvirtualnetworkgatewayconnection) | Creates a site-to-site connection. |
106+
| [New-AzureRmVirtualNetworkGatewayConnection](/powershell/module/azurerm.network/new-azurermvirtualnetworkgatewayconnection) | Creates a site-to-site connection. |
107107
| [Remove-AzureRmResourceGroup](/powershell/module/azurerm.resources/remove-azurermresourcegroup) | Removes a resource group and all resources contained within. |
108108
| [Set-AzureRmVirtualNetwork](/powershell/module/azurerm.network/set-azurermvirtualnetwork) | Sets the subnet configuration for the virtual network. |
109109
| [Set-AzureRmVirtualNetworkGateway](/powershell/module/azurerm.network/set-azurermvirtualnetworkgateway) | Sets the configuration for the VPN gateway. |

includes/iot-hub-get-started-create-device-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Create a device identity
1414

15-
In this section, you use the Azure CLI to create a device identity for this tutorial. The Azure CLI is preinstalled in the [Azure Cloud Shell](https://docs.microsoft.com/zure/cloud-shell/overview), or you can [install it locally](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest). Device IDs are case sensitive.
15+
In this section, you use the Azure CLI to create a device identity for this tutorial. The Azure CLI is preinstalled in the [Azure Cloud Shell](~/articles/cloud-shell/overview.md), or you can [install it locally](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest). Device IDs are case sensitive.
1616

1717
1. Run the following command in the command-line environment where you are using the Azure CLI to install the IoT extension:
1818

0 commit comments

Comments
 (0)