MonitorDTO Data Type

Representation of a monitor object that monitors a single specific resource according to one or more conditions.

See Also
Copyright 2013 WANdisco.
Properties
name data type constraints description
identity string  
resource ResourceDTO  
conditionEventPair array of ConditionEventPairDTO  
isEssential boolean required

Example

{
  "identity" : "...",
  "resource" : {
    "filePath" : "..."
  },
  "conditionEventPair" : [ {
    "condition" : {
      "capacityThreshold" : 12345,
      "message" : "..."
    },
    "severityOfEvent" : "..."
  }, {
    "condition" : {
      "capacityThreshold" : 12345,
      "message" : "..."
    },
    "severityOfEvent" : "..."
  } ],
  "isEssential" : true
}