Skip to content

Commit a317cc7

Browse files
committed
Merge branch 'master' of https://github.com/Microsoft/azure-docs-pr into tmmetadataupdate
2 parents f82588c + 5007386 commit a317cc7

File tree

38 files changed

+89
-72
lines changed

38 files changed

+89
-72
lines changed

articles/app-service/operating-system-functionality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ It is important to monitor your disk utilization as your application grows. If t
6161

6262
- The app may throw an error indicating not enough space on the disk.
6363
- You may see disk errors when browsing to the Kudu console.
64-
- Deployment from VSTS or Visual Studio may fail with `ERROR_NOT_ENOUGH_DISK_SPACE: Web deployment task failed. (Web Deploy detected insufficient space on disk)`.
64+
- Deployment from Azure DevOps or Visual Studio may fail with `ERROR_NOT_ENOUGH_DISK_SPACE: Web deployment task failed. (Web Deploy detected insufficient space on disk)`.
6565
- Your app may suffer slow performance.
6666

6767
<a id="NetworkDrives"></a>

articles/azure-cache-for-redis/cache-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ You can use any of the commands listed at [Redis commands](https://redis.io/comm
247247
* `redis-cli -h <Azure Cache for Redis name>.redis.cache.windows.net -a <key>`
248248

249249
> [!NOTE]
250-
> The Redis command-line tools do not work with the SSL port, but you can use a utility such as `stunnel` to securely connect the tools to the SSL port by following the directions in the [Announcing ASP.NET Session State Provider for Redis Preview Release](https://blogs.msdn.com/b/webdev/archive/2014/05/12/announcing-asp-net-session-state-provider-for-redis-preview-release.aspx) blog post.
250+
> The Redis command-line tools do not work with the SSL port, but you can use a utility such as `stunnel` to securely connect the tools to the SSL port by following the directions in the [How to use the Redis command-line tool with Azure Cache for Redis](https://docs.microsoft.com/en-us/azure/azure-cache-for-redis/cache-how-to-redis-cli-tool) article.
251251
>
252252
>
253253

articles/azure-maps/how-to-request-real-time-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ Let's use "522" as our metro ID, which is the metro ID for "Seattle–Tacoma–B
110110
}
111111
112112
113-
## Real-time availability and vacancy information for bike docking station
113+
## Real-time data for bike docking station
114114
115-
The [Get Transit Dock Info API](https://aka.ms/AzureMapsMobilityTransitDock) of the Azure Maps Mobility Service, allows to request static and real-time information for a given bike or scooter docking station. We will make a request to get real-time data for a docking station for bikes.
115+
The [Get Transit Dock Info API](https://aka.ms/AzureMapsMobilityTransitDock) of the Azure Maps Mobility Service, allows to request static and real-time information such as availability and vacancy information for a given bike or scooter docking station. We will make a request to get real-time data for a docking station for bikes.
116116
117117
In order to make a request to the Get Transit Dock Info API, you will need the **dockId** for that station. You can get the dock ID by making a search request to the [Get Nearby Transit API](https://aka.ms/AzureMapsMobilityNearbyTransit) and setting the **objectType** parameter to "bikeDock". Follow the steps below to get real-time data of a docking station for bikes.
118118

articles/azure-monitor/app/correlation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: application-insights
99
ms.workload: TBD
1010
ms.tgt_pltfrm: ibiza
1111
ms.topic: conceptual
12-
ms.date: 02/14/2019
12+
ms.date: 06/07/2019
1313
ms.reviewer: sergkanz
1414
ms.author: lagayhar
1515
---
@@ -29,7 +29,7 @@ Every outgoing operation, such as an HTTP call to another component, is represen
2929

3030
You can build a view of the distributed logical operation by using `operation_Id`, `operation_parentId`, and `request.id` with `dependency.id`. These fields also define the causality order of telemetry calls.
3131

32-
In a microservices environment, traces from components can go to different storage items. Every component can have its own instrumentation key in Application Insights. To get telemetry for the logical operation, you must query data from every storage item. When the number of storage items is huge, you'll need a hint about where to look next. The Application Insights data model defines two fields to solve this problem: `request.source` and `dependency.target`. The first field identifies the component that initiated the dependency request, and the second identifies which component returned the response of the dependency call.
32+
In a microservices environment, traces from components can go to different storage items. Every component can have its own instrumentation key in Application Insights. To get telemetry for the logical operation, the Application Insights UX queries data from every storage item. When the number of storage items is huge, you'll need a hint about where to look next. The Application Insights data model defines two fields to solve this problem: `request.source` and `dependency.target`. The first field identifies the component that initiated the dependency request, and the second identifies which component returned the response of the dependency call.
3333

3434
## Example
3535

articles/azure-monitor/platform/activity-logs-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ There is a single Activity Log for each Azure subscription. It provides data abo
2424

2525

2626
> [!NOTE]
27-
> The Azure Activity Log is primarily for activities that occur in Azure Resource Manager. It does not track ugresources using the Classic/RDFE model. Some Classic resource types have a proxy resource provider in Azure Resource Manager (for example, Microsoft.ClassicCompute). If you interact with a Classic resource type through Azure Resource Manager using these proxy resource providers, the operations appear in the Activity Log. If you interact with a Classic resource type outside of the Azure Resource Manager proxies, your actions are only recorded in the Operation Log. The Operation Log can be browsed in a separate section of the portal.
27+
> The Azure Activity Log is primarily for activities that occur in Azure Resource Manager. It does not track resources using the Classic/RDFE model. Some Classic resource types have a proxy resource provider in Azure Resource Manager (for example, Microsoft.ClassicCompute). If you interact with a Classic resource type through Azure Resource Manager using these proxy resource providers, the operations appear in the Activity Log. If you interact with a Classic resource type outside of the Azure Resource Manager proxies, your actions are only recorded in the Operation Log. The Operation Log can be browsed in a separate section of the portal.
2828
2929
## Activity Log retention
3030
Activity Log events are stored for 90 days. To store this data for longer periods, [collect it in Azure Monitor](activity-log-collect.md) or [export it to storage or Event Hubs](activity-log-export.md).

articles/cognitive-services/Anomaly-Detector/tutorials/anomaly-detection-streaming-databricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: aahi
1414

1515
# Tutorial: Anomaly detection on streaming data using Azure Databricks
1616

17-
[Azure Databricks](https://azure.microsoft.com/en-us/services/databricks/) is a fast, easy, and collaborative Apache Spark–based analytics service. The Anomaly Detector API, part of Azure Cognitive Services, provides a way of monitoring your time series data. Use this tutorial to run anomaly detection on a stream of data in near real-time using Azure Databricks. You'll ingest twitter data using Azure Event Hubs, and import them into Azure Databricks using the Spark Event Hubs connector. Afterwards, you'll use the API to detect anomalies on the streamed data.
17+
[Azure Databricks](https://azure.microsoft.com/services/databricks/) is a fast, easy, and collaborative Apache Spark–based analytics service. The Anomaly Detector API, part of Azure Cognitive Services, provides a way of monitoring your time series data. Use this tutorial to run anomaly detection on a stream of data in near real-time using Azure Databricks. You'll ingest twitter data using Azure Event Hubs, and import them into Azure Databricks using the Spark Event Hubs connector. Afterwards, you'll use the API to detect anomalies on the streamed data.
1818

1919
The following illustration shows the application flow:
2020

articles/cognitive-services/Face/ReleaseNotes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: face-api
1111
ms.topic: conceptual
12-
ms.date: 04/28/2019
12+
ms.date: 06/06/2019
1313
ms.author: yluiu
1414
---
1515

1616
# Face API Release Notes
1717

1818
This article pertains to Face API Service version 1.0.
1919

20+
### Release changes in June 2019
21+
22+
* Added a new face detection model with improved accuracy on small, side-view, occluded and blurry faces. Use it through [Face - Detect](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395236), [FaceList - Add Face](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395250), [LargeFaceList - Add Face](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/5a158c10d2de3616c086f2d3), [PersonGroup Person - Add Face](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f3039523b) and [LargePersonGroup Person - Add Face](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/599adf2a3a7b9412a4d53f42) by specifying the new face detection model name `detection_02` in `detectionModel` parameter. More details in [How to specify a detection model](Face-API-How-to-Topics/specify-detection-model.md).
23+
2024
### Release changes in April 2019
2125

2226
* Improved overall accuracy of the `age` and `headPose` attributes. The `headPose` attribute is also updated with the `pitch` value enabled now. Use these attributes by specifying them in the `returnFaceAttributes` parameter of [Face - Detect](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395236) `returnFaceAttributes` parameter.

articles/cognitive-services/Speech-Service/ship-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ The Cognitive Services Speech SDK is tested on Windows 10 and on Windows Server
2525

2626
The Cognitive Services Speech SDK requires the [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/help/2977003/the-latest-supported-visual-c-downloads) on the system. You can download installers for the latest version of the `Microsoft Visual C++ Redistributable for Visual Studio 2019` here:
2727

28-
- [Win32](https://aka.ms/vs/15/release/vc_redist.x86.exe)
29-
- [x64](https://aka.ms/vs/15/release/vc_redist.x64.exe)
28+
- [Win32](https://aka.ms/vs/16/release/vc_redist.x86.exe)
29+
- [x64](https://aka.ms/vs/16/release/vc_redist.x64.exe)
3030

3131
If your application uses managed code, the `.NET Framework 4.6.1` or later is required on the target machine.
3232

articles/digital-twins/how-to-diagnose-user-defined-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A variety of logging, analytics, and diagnostic tools are provided to that end.
2929
Azure Digital Twins supports robust logging, monitoring, and analytics. Solutions developers can use Azure Monitor logs, diagnostic logs, activity logs, and other services to support the complex monitoring needs of an IoT app. Logging options can be combined to query or display records across several services and to provide granular logging coverage for many services.
3030

3131
* For logging configuration specific to Azure Digital Twins, read [How to configure monitoring and logging](./how-to-configure-monitoring.md).
32-
* Consult the the [Azure Monitor](../azure-monitor/overview.md) overview to learn about powerful log settings enabled through Azure Monitor.
32+
* Consult the [Azure Monitor](../azure-monitor/overview.md) overview to learn about powerful log settings enabled through Azure Monitor.
3333
* Review the article [Collect and consume log data from your Azure resources](../azure-monitor/platform/diagnostic-logs-overview.md) for configuring diagnostic log settings in Azure Digital Twins through the Azure Portal, Azure CLI, or PowerShell.
3434

3535
Once configured, you'll be able to select all log categories, metrics, and use powerful Azure Monitor log analytics workspaces to support your debugging efforts.

articles/frontdoor/waf-front-door-configure-ip-restriction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ az network waf-policy custom-rule create \
5858
--name IPAllowListRule \
5959
--priority 1 \
6060
--rule-type MatchRule \
61-
--match-condition RemoteAddr IPMatch "<ip-address-range-1>","<ip-address-range-2>" \
61+
--match-condition RemoteAddr IPMatch ("<ip-address-range-1>","<ip-address-range-2>") \
6262
--action Allow \
6363
--resource-group <resource-group-name> \
6464
--policy-name IPAllowPolicyExampleCLI
@@ -134,7 +134,7 @@ In the following example, replace *ip-address-range-1*, *ip-address-range-2* wit
134134
$IPMatchCondition = New-AzFrontDoorWafMatchConditionObject `
135135
-MatchVariable RemoteAddr `
136136
-OperatorProperty IPMatch `
137-
-MatchValue ["ip-address-range-1", "ip-address-range-2"]
137+
-MatchValue "ip-address-range-1", "ip-address-range-2"
138138
```
139139
Create an IP *match all condition* rule by using the following command:
140140
```powershell

0 commit comments

Comments
 (0)