Representation of a monitor object that monitors a single specific resource according to one or more conditions.
| name | data type | description |
|---|---|---|
| identity | string | |
| resource | ResourceDTO | |
| conditionEventPair | array of ConditionEventPairDTO | |
| isEssential | boolean |
Example
{
"identity" : "...",
"resource" : {
"filePath" : "..."
},
"conditionEventPair" : [ {
"condition" : {
"capacityThreshold" : 12345,
"message" : "..."
},
"severityOfEvent" : "..."
}, {
"condition" : {
"capacityThreshold" : 12345,
"message" : "..."
},
"severityOfEvent" : "..."
} ],
"isEssential" : true
}