Skip to content

Commit 3f07ec9

Browse files
committed
Review changes for new definitions
1 parent ef9679c commit 3f07ec9

File tree

1 file changed

+15
-21
lines changed

1 file changed

+15
-21
lines changed

articles/spring-cloud/spring-cloud-concept-app-status.md

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,28 @@ ms.author: brendm
1414
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**.
1515

1616
## Apps status
17-
To view general status of an application type, select **Apps** in the left navigation pane of a resource group. The result will be display of the status of the deployed app and its discovery status:
18-
* DeploymentStatus: Whether the app is deployed or its state
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 and its discovery status:
18+
* Status: Whether the app is deployed or its state
1919
* DiscoveryStatus: The registered status of the app in Eureka server, which is the same as the definition in Eureka
2020

2121
![Apps status](media/spring-cloud-concept-app-status/apps-ui-status.png)
2222

23-
**The Deployment status is reported as one of the following values:**
23+
**The deployment status is reported as one of the following values:**
2424

2525
| Enum | Definition |
2626
|:--:|:----------------:|
27-
| Running | The deployment runs properly |
28-
| Stopped | The deployment is stopped |
29-
| Compiling | Compiling user's source code |
30-
| Allocating | Acquiring resource for the deployment. Prevent user operation in this status. |
31-
| Upgrading | User's app is trying to boot up with given resources and binary deployment. |
32-
| Failed | User's app failed to deploy due to lack of resources, or binary cannot be built from source code. |
27+
| Running | The deployment SHOULD be running. |
28+
| Stopped | The deployment SHOULD be stopped. |
3329

34-
**The provisioning state is reported as one of the following values:**
30+
**The Discovery status is reported as one of the following values:**
31+
32+
| Enum | Definition |
33+
|:--:|:----------------:|
34+
| Up | The app instance is registered to eureka and ready to receive traffic |
35+
| OUT_OF_SERVICE | The app instance is registered to Eureka and able to receive traffic. but shuts down for traffic intentionally. |
36+
| DOWN | The app instance is not registered to Eureka or is registered but not able to receive traffic. |
37+
38+
**The provisioning state is accessible only from the CLI. It is reported as one of the following values:**
3539

3640
| Enum | Definition |
3741
|:--:|:----------------:|
@@ -41,14 +45,6 @@ To view general status of an application type, select **Apps** in the left navig
4145
| Failed | Failed to achieve the *Succeeded* goal. |
4246
| Deleting | The resource is being deleted. This prevents operation, and the resource is not available in this status. |
4347

44-
**The Discovery status is reported as one of the following values:**
45-
46-
| Enum | Definition |
47-
|:--:|:----------------:|
48-
| Up | The app instance is registered to eureka and ready to receive traffic |
49-
| OUT_OF_SERVICE | The app instance is registered to Eureka and able to receive traffic. but shuts down for traffic intentionally. |
50-
| DOWN | The app instance is not registered to Eureka or is registered but not able to receive traffic. |
51-
5248
## App instances status
5349

5450
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:
@@ -61,12 +57,10 @@ To view the status of a specific instance of a deployed app, click the **Name**
6157

6258
| Enum | Definition |
6359
|:--:|:----------------:|
64-
| Pending | Still allocating resources for the instance |
6560
| Starting | The binary is successfully deployed to the given instance. Instance booting the jar file may fail because jar cannot run properly. |
6661
| Running | The instance works. |
67-
| Failed | Failed to deploy the resource to the instance. |
62+
| Failed | The app instance failed to start user’s binary after several retries. |
6863
| Terminating | The app instance is shutting down. |
69-
| Retiring | The app instance is for the previous deployment and should be retired after the current deployment operation. |
7064

7165
**The discovery status of the instance is reported as one of the following values:**
7266

0 commit comments

Comments
 (0)