Skip to content

Commit 0df0559

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into trend-micro-tutorial
2 parents 98017e2 + 9496f6f commit 0df0559

File tree

7 files changed

+79
-5
lines changed

7 files changed

+79
-5
lines changed

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ config->EnableDictation();
214214
A common task for speech recognition is specifying the input (or source) language. Let's take a look at how you would change the input language to German. In your code, find your [`SpeechConfig`](https://docs.microsoft.com/cpp/cognitive-services/speech/speechconfig), then add this line directly below it.
215215

216216
```cpp
217-
config->SetSpeechRecognitionLanguage("fr-FR");
217+
config->SetSpeechRecognitionLanguage("de-DE");
218218
```
219219
220220
[`SetSpeechRecognitionLanguage`](https://docs.microsoft.com/cpp/cognitive-services/speech/speechconfig#setspeechrecognitionlanguage) is a parameter that takes a string as an argument. You can provide any value in the list of supported [locales/languages](../../../language-support.md).
@@ -246,4 +246,4 @@ phraseListGrammar->Clear();
246246
Phrase lists are only one option to improve recognition accuracy. You can also:
247247

248248
* [Improve accuracy with Custom Speech](../../../how-to-custom-speech.md)
249-
* [Improve accuracy with tenant models](../../../tutorial-tenant-model.md)
249+
* [Improve accuracy with tenant models](../../../tutorial-tenant-model.md)

articles/expressroute/expressroute-locations-providers.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: cherylmc
66

77
ms.service: expressroute
88
ms.topic: conceptual
9-
ms.date: 04/14/2020
9+
ms.date: 04/29/2020
1010
ms.author: cherylmc
1111
---
1212
# ExpressRoute partners and peering locations
@@ -178,6 +178,7 @@ If your connectivity provider is not listed in previous sections, you can still
178178
* Check with your connectivity provider to see if they are connected to any of the exchanges in the table above. You can check the following links to gather more information about services offered by exchange providers. Several connectivity providers are already connected to Ethernet exchanges.
179179
* [Cologix](https://www.cologix.com/)
180180
* [CoreSite](https://www.coresite.com/)
181+
* [DE-CIX](https://www.de-cix.net/en/de-cix-service-world/cloud-exchange)
181182
* [Equinix Cloud Exchange](https://www.equinix.com/services/interconnection-connectivity/cloud-exchange/)
182183
* [InterXion](https://www.interxion.com/)
183184
* [NextDC](https://www.nextdc.com/)

articles/expressroute/expressroute-locations.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: cherylmc
77
ms.service: expressroute
88
ms.topic: conceptual
99
ms.workload: infrastructure-services
10-
ms.date: 04/14/2020
10+
ms.date: 04/29/2020
1111
ms.author: cherylmc
1212

1313
---
@@ -207,6 +207,7 @@ If your connectivity provider is not listed in previous sections, you can still
207207
* Check with your connectivity provider to see if they are connected to any of the exchanges in the table above. You can check the following links to gather more information about services offered by exchange providers. Several connectivity providers are already connected to Ethernet exchanges.
208208
* [Cologix](https://www.cologix.com/)
209209
* [CoreSite](https://www.coresite.com/)
210+
* [DE-CIX](https://www.de-cix.net/en/de-cix-service-world/cloud-exchange)
210211
* [Equinix Cloud Exchange](https://www.equinix.com/services/interconnection-connectivity/cloud-exchange/)
211212
* [Interxion](https://www.interxion.com/products/interconnection/cloud-connect/)
212213
* [IX Reach](https://www.ixreach.com/partners/cloud-partners/microsoft-azure/)
80.7 KB
Loading
91 KB
Loading
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
title: Understanding app status in Azure Spring Cloud
3+
description: Learn the app status categories in Azure Spring Cloud
4+
author: MikeDodaro
5+
ms.service: spring-cloud
6+
ms.topic: conceptual
7+
ms.date: 04/10/2020
8+
ms.author: brendm
9+
10+
---
11+
12+
# Understanding app status in Azure Spring Cloud
13+
14+
The Azure Spring Cloud UI delivers information about the status of running applications. There is an **Apps** option for each resource group in a subscription that displays general status of application types. For each application type, there is display of **Application instances**.
15+
16+
## Apps status
17+
To view general status of an application type, select **Apps** in the left navigation pane of a resource group. The result displays the status of the deployed app:
18+
19+
* **Provisioning Status** shows the deployment’s provisioning state
20+
* **Running instance** shows how many app instances are running/how many app instances are desired. If the app should be stopped, this column shows *stopped*.
21+
* **Registered Instance** shows how many app instances are registered to eureka/how many app instance are desired. If the app should be stopped, this column shows *stopped*.
22+
23+
24+
![Apps status](media/spring-cloud-concept-app-status/apps-ui-status.png)
25+
26+
**The deployment status is reported as one of the following values:**
27+
28+
| Enum | Definition |
29+
|:--:|:----------------:|
30+
| Running | The deployment SHOULD be running. |
31+
| Stopped | The deployment SHOULD be stopped. |
32+
33+
**The provisioning state is accessible only from the CLI. It is reported as one of the following values:**
34+
35+
| Enum | Definition |
36+
|:--:|:----------------:|
37+
| Creating | The resource is creating. |
38+
| Updating | The resource is updating. |
39+
| Succeeded | Successfully supplied resources and deploys the binary. |
40+
| Failed | Failed to achieve the *Succeeded* goal. |
41+
| Deleting | The resource is being deleted. This prevents operation, and the resource is not available in this status. |
42+
43+
## App instances status
44+
45+
To view the status of a specific instance of a deployed app, click the **Name** of the app in the **Apps** UI. The results will display:
46+
* **Status**: Whether the instance is running or its state
47+
* **DiscoveryStatus**: The registered status of the app instance in Eureka server
48+
49+
![App instances status](media/spring-cloud-concept-app-status/apps-ui-instance-status.png)
50+
51+
**The instance status is reported as one of the following values:**
52+
53+
| Enum | Definition |
54+
|:--:|:----------------:|
55+
| Starting | The binary is successfully deployed to the given instance. Instance booting the jar file may fail because jar cannot run properly. |
56+
| Running | The instance works. |
57+
| Failed | The app instance failed to start user’s binary after several retries. |
58+
| Terminating | The app instance is shutting down. |
59+
60+
**The discovery status of the instance is reported as one of the following values:**
61+
62+
| Enum | Definition |
63+
|:--:|:----------------:|
64+
| UP | The app instance is registered to eureka and ready to receive traffic |
65+
| OUT_OF_SERVICE | The app instance is registered to Eureka and able to receive traffic. but shuts down for traffic intentionally. |
66+
| DOWN | The app instance is not registered to Eureka or is registered but not able to receive traffic. |
67+
68+
69+
## See also
70+
* [Prepare a Java Spring application for deployment in Azure Spring Cloud](spring-cloud-tutorial-prepare-app-deployment.md)

articles/spring-cloud/toc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@
4040
items:
4141
- name: Understanding Azure Spring Cloud quotas and limits
4242
href: spring-cloud-quotas.md
43-
- name: Understanding metrics in the Azure Spring Cloud
43+
- name: Understanding metrics in Azure Spring Cloud
4444
href: spring-cloud-concept-metrics.md
45+
- name: Understanding app status in Azure Spring Cloud
46+
href: spring-cloud-concept-app-status.md
4547
- name: Plan for disaster recovery
4648
href: disaster-recovery.md
4749
- name: How-to guides

0 commit comments

Comments
 (0)