Events
Description |
Allows users to retrieve Events data in NEO |
|||||||||||
Request URL |
/neo/app/events |
|||||||||||
Main Operations |
Get Events
|
Description |
Retrieves events data in NEO (all events or events for specific systems) |
|
Request URL |
All Events: GET /neo/app/events Specific Events: GET /neo/app/events/ |
|
Additional Filters |
|
|
Request Data |
N/A |
Response:
{
"Category"
: "Device"
, "RelatedObjectID"
: "10.209.36.161.system"
,
"RelatedObjectUrl"
: "/resources/systems/10.209.36.16 1.system"
,
"PolicyID"
: "3003"
,
"Description"
: "Power supply is unresponsive"
, "RelatedObjectType"
: "System"
, "ConditionID"
: "3003.1"
, "Acknowledged"
: false
, "CorrectiveAction"
: "Please try
to reinsert the module, if
the issue persists contact support", "
SubCategory": "
Power",
"RelatedObjectName"
: "10.209.36.161"
,
"Source"
: "PS2"
, "Reason"
: "Power supply is unresponsive"
,
"EventName"
: "Power Fault"
, "Occurrences"
: 5
,
"Timestamp"
: "2018
-02
-25
13
:26
:04
",
"RelatedSystem"
: "10.209.36.161"
,
"RelatedJob"
: ""
,
"ID"
: "24"
,
"Severity"
: "Error"
}
If an invalid or a non-existing system is specified, an empty list will be returned.
Description |
Retrieves a summary of all events. The summary is counting all events of a certain severity, grouped by hour. |
|
Request URL |
GET /neo/app/events/summary |
|
Additional Filters |
|
|
Request Data |
N/A |
Response:
{
"2018-11-18 13:00:00"
: {
"Error"
: 1
,
"Info"
: 12
},
"2018-11-18 14:00:00"
: {
"Error"
: 12
,
"Info"
: 1
}
}