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/application-insights/app-insights-profiler-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Running Profiler on premises isn't officially supported, but we do have some [in
34
34
35
35
## View profiler data
36
36
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.
38
38
39
39
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.
Copy file name to clipboardExpand all lines: articles/azure-maps/map-add-controls.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ This article shows you how to add map controls to a map. You will also learn how
21
21
22
22
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.
23
23
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.
25
25
26
26
## Add pitch control
27
27
@@ -30,7 +30,7 @@ Zoom control adds the ability to zoom in and out of the map. The second code blo
30
30
31
31
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.
32
32
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.
34
34
35
35
## Add compass control
36
36
@@ -39,7 +39,7 @@ Pitch control adds the ability to change the pitch of the map. The second block
39
39
40
40
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.
41
41
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.
43
43
44
44
## A Map with all controls
45
45
@@ -48,13 +48,13 @@ The second block of code creates a Compass Control object using the atlas [Compa
48
48
49
49
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.
50
50
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.
52
52
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.
54
54
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.
56
56
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.
58
58
59
59
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.
Copy file name to clipboardExpand all lines: articles/cosmos-db/sql-api-nodejs-samples.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ The [app.js](https://github.com/Azure/azure-cosmos-js/blob/master/samples/IndexM
92
92
| [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)
93
93
94
94
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).
96
96
97
97
## Server-side programming examples
98
98
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.
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).
68
68
69
69
## Querying DateTimes in LINQ
70
70
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
82
82
## Next Steps
83
83
* Download and run the [Code samples on GitHub](https://github.com/Azure/azure-documentdb-dotnet/tree/master/samples/code-samples)
84
84
* 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)
Copy file name to clipboardExpand all lines: articles/germany/germany-migration-storage.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,5 +139,5 @@ For PowerShell follow [this article](../backup/backup-azure-vms-automation.md#cr
139
139
140
140
### Links
141
141
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
Copy file name to clipboardExpand all lines: articles/lab-services/devtest-lab-guidance-governance-cost-ownership.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ The DevTest Labs resource should be owned by owners who are close to the project
54
54
55
55
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.
56
56
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.
Copy file name to clipboardExpand all lines: articles/virtual-machines/troubleshooting/troubleshoot-ssh-connection.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -238,7 +238,7 @@ Try these steps to resolve the most common SSH connection failures for VMs that
238
238
* 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).
239
239
240
240
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:
Copy file name to clipboardExpand all lines: articles/vpn-gateway/scripts/vpn-gateway-sample-site-to-site-powershell.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ This script uses the following commands to create the deployment. Each item in t
103
103
|[New-AzureRmVirtualNetworkGatewayIpConfig](/powershell/module/azurerm.network/new-azurermvirtualnetworkgatewayipconfig)| Creates a new gateway ip configuration. |
104
104
|[New-AzureRmVirtualNetworkGateway](https://docs.microsoft.com/powershell/module/azurerm.network/new-azurermvirtualnetworkgateway?view=azurermps-6.8.1)| Creates a VPN gateway. |
105
105
|[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. |
107
107
|[Remove-AzureRmResourceGroup](/powershell/module/azurerm.resources/remove-azurermresourcegroup)| Removes a resource group and all resources contained within. |
108
108
|[Set-AzureRmVirtualNetwork](/powershell/module/azurerm.network/set-azurermvirtualnetwork)| Sets the subnet configuration for the virtual network. |
109
109
|[Set-AzureRmVirtualNetworkGateway](/powershell/module/azurerm.network/set-azurermvirtualnetworkgateway)| Sets the configuration for the VPN gateway. |
Copy file name to clipboardExpand all lines: includes/iot-hub-get-started-create-device-identity.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
## Create a device identity
14
14
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.
16
16
17
17
1. Run the following command in the command-line environment where you are using the Azure CLI to install the IoT extension:
0 commit comments