@@ -20,7 +20,7 @@ To view general status of an application type, select **Apps** in the left navig
20
20
21
21
![ Apps status] ( media/spring-cloud-concept-app-status/apps-ui-status.png )
22
22
23
- The Deployment status is reported as one of the following values:
23
+ ** The Deployment status is reported as one of the following values:**
24
24
25
25
Deployment.properties.Status
26
26
@@ -33,13 +33,24 @@ Deployment.properties.Status
33
33
| Upgrading | User's app is trying to boot up with given resources and binary deployment. |
34
34
| Failed | User's app failed to deploy due to lack of resources, or binary cannot be built from source code. |
35
35
36
- The Discovery status is reported as one of the following values:
36
+ ** The previsioning state is reported as one of the following values:**
37
37
38
- DiscoveryStatus: Show registered status of the instance in Eureka server, same as the definition in Eureka
38
+ Deployment.properties.privioningState:
39
39
40
40
| Enum | Definition |
41
41
| :--:| :----------------:|
42
+ | Creating | The resource is creating. |
43
+ | Updating | The resource is updating. |
44
+ | Succeeded | ASC successfully supplies resources and deploys the binary. |
45
+ | Failed | ASC failed to achieve the * Succeeded* goal. |
46
+ | Deleting | The resource is being deleted. This prevents operation, and the resource is not available in this status. |
47
+
48
+ ** The Discovery status is reported as one of the following values:**
49
+
50
+ DiscoveryStatus: registered status of the instance in Eureka server, same as the definition in Eureka
51
+
42
52
| Enum | Definition |
53
+ | :--:| :----------------:|
43
54
| Up | The app instance is registered to eureka and ready to receive traffic |
44
55
| OUT_OF_SERVICE | The app instance is registered to Eureka and able to receive traffic. but shuts down for traffic intentionally. |
45
56
| DOWN | The app instance is not registered to Eureka or is registered but not able to receive traffic. |
@@ -52,10 +63,30 @@ To view the status of a specific instance of a deployed app, click the **Name**
52
63
53
64
![ App instances status] ( media/spring-cloud-concept-app-status/apps-ui-instance-status.png )
54
65
55
- The instance status is reported as one of the following values:
66
+ ** The instance status is reported as one of the following values:**
67
+
68
+ Deployment.properties.appInstance.status:
69
+
70
+ | Enum | Definition |
71
+ | :--:| :----------------:|
72
+ | Pending | ASC is still allocating resources for the instance |
73
+ | Starting | The binary is successfully deployed to the given instance. Instance booting the jar file may fail because jar cannot run properly. |
74
+ | Running | The instance works. |
75
+ | Failed | ASC failed to deploy the resource to the instance. |
76
+ | Terminating | The app instance is shutting down. |
77
+ | Retiring | The app instance is for the previous deployment and should be retired after the current deployment operation. |
56
78
79
+ ** The discovery status of the instance is reported as one of the following values:**
80
+
81
+ Deployment.properties.appInstance. DiscoveryStatus:
82
+ registered status of the instance in Eureka server, same as the definition in Eureka
83
+
84
+ | Enum | Definition |
85
+ | :--:| :----------------:|
86
+ | Up | The app instance is registered to eureka and ready to receive traffic |
87
+ | OUT_OF_SERVICE | The app instance is registered to Eureka and able to receive traffic. but shuts down for traffic intentionally. |
88
+ | DOWN | The app instance is not registered to Eureka or is registered but not able to receive traffic. |
57
89
58
- The discovery status of the instance is reported as one of the following values:
59
90
60
91
## See also
61
92
* [ Prepare a Java Spring application for deployment in Azure Spring Cloud] ( spring-cloud-tutorial-prepare-app-deployment.md )
0 commit comments