Skip to content

Commit 25127d2

Browse files
committed
update description of overallHealth in ServerHealth
1 parent eae85a0 commit 25127d2

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

docs/domains/Domain.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@
407407
"type": "object",
408408
"properties": {
409409
"overallHealth": {
410-
"description": "Server health of this WebLogic server.",
410+
"description": "Server health of this WebLogic server. If the value is \"Not available\", the operator has failed to read the health. If the value is \"Not available (possibly overloaded)\", the operator has failed to read the health of the server possibly due to the server is in overloaded state",
411411
"type": "string"
412412
},
413413
"activationTime": {

docs/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Shutdown describes the configuration for shutting down a server instance.
173173
| Name | Type | Description |
174174
| --- | --- | --- |
175175
| `activationTime` | DateTime | RFC 3339 date and time at which the server started. |
176-
| `overallHealth` | string | Server health of this WebLogic server. |
176+
| `overallHealth` | string | Server health of this WebLogic server. If the value is "Not available", the operator has failed to read the health. If the value is "Not available (possibly overloaded)", the operator has failed to read the health of the server possibly due to the server is in overloaded state |
177177
| `subsystems` | array of [Subsystem Health](#subsystem-health) | Status of unhealthy subsystems, if any. |
178178

179179
### Channel

docs/domains/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@
13271327
"type": "object",
13281328
"properties": {
13291329
"overallHealth": {
1330-
"description": "Server health of this WebLogic server.",
1330+
"description": "Server health of this WebLogic server. If the value is \"Not available\", the operator has failed to read the health. If the value is \"Not available (possibly overloaded)\", the operator has failed to read the health of the server possibly due to the server is in overloaded state",
13311331
"type": "string"
13321332
},
13331333
"activationTime": {

model/src/main/java/oracle/kubernetes/weblogic/domain/model/ServerHealth.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ public class ServerHealth {
2323
@Expose
2424
private DateTime activationTime;
2525

26-
@Description("Server health of this WebLogic server.")
26+
@Description(
27+
"Server health of this WebLogic server. If the value is \"Not available\", the operator has "
28+
+ "failed to read the health. If the value is \"Not available (possibly overloaded)\", the "
29+
+ "operator has failed to read the health of the server possibly due to the server is "
30+
+ "in overloaded state")
2731
@SerializedName("overallHealth")
2832
@Expose
2933
private String overallHealth;

0 commit comments

Comments
 (0)