AlarmResult Data Type

AlarmService search result.

Properties
name data type description
hitCount number
page number
limit number
alarms array of Alarm

Example

{
  "hitCount" : 12345,
  "page" : 12345,
  "limit" : 12345,
  "alarms" : [ {
    "id" : 12345,
    "category" : "wcu::info::start_switch::int",
    "date" : "...",
    "message" : "...",
    "severity" : "info",
    "source" : "..."
  }, {
    "id" : 12345,
    "category" : "wcu::info::start_switch::ext",
    "date" : "...",
    "message" : "...",
    "severity" : "fatal",
    "source" : "..."
  } ]
}