HealthSummaryModel
A summary of object health indicators.
Properties
| Name | Description | Additional information |
|---|---|---|
| ActiveCount | The number of active workflows associated with the object. |
Type: Number |
| ActiveTime | If there are one or more active workflows, this is the time at which the oldest one was scheduled or started. |
Type: String (ISO 8601 standard date) |
| ErrorCount | The number of error notifications associated with the object. |
Type: Number |
| ErrorTime | If there are any errors, this is the time at which the oldest error occurred. |
Type: String (ISO 8601 standard date) |
| WarningCount | The number of warning notifications associated with the object. |
Type: Number |
| WarningTime | If there are any warnings, this is the time at which the oldest warning occurred. |
Type: String (ISO 8601 standard date) |
| InfoCount | The number of informational notifications associated with the object. |
Type: Number |
| Messages | The list of health notification messages associated with the object. |
Type: Array of HealthMessageModel |
Sample
application/json
{
"InfoCount": 1,
"Messages": [
{
"Text": "Attempting to reach desired capacity",
"IsActive": true,
"Type": "Allocation"
}
]
}