Get Severity States and Summary Count of Event Filters

get

/api/eventNavigation/Events/readStates

Gets the severity states and the summary count of event filters.

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : SuccessfulGetOperation
Type: object
Show Source
Nested Schema : type
Type: object
Show Source
Nested Schema : data
Type: array
The list of event filters with their severity states and summary count.
Show Source
Example:
[
    {
        "id":"Filter-1-7",
        "EventSeverity":"normal",
        "Count":0,
        "SumCount":0,
        "SeverityValues":[
            0,
            0,
            0,
            0,
            0,
            0
        ],
        "LoadingStates":false,
        "raw":{
            "success":true,
            "message":"Loaded 0 entries",
            "data":[
            ],
            "errors":null,
            "total":0,
            "warnings":null,
            "metaData":{
                "root":"data",
                "fields":[
                ],
                "columns":[
                ],
                "severities":{
                    "normal":0,
                    "unknown":0,
                    "info":0,
                    "minor":0,
                    "major":0,
                    "critical":0,
                    "all":0,
                    "sum":0
                }
            }
        }
    },
    {
        "id":"Filter-1-23",
        "EventSeverity":"critical",
        "Count":2562,
        "SumCount":3577998,
        "SeverityValues":[
            2,
            0,
            1,
            1589,
            809,
            161
        ],
        "LoadingStates":false,
        "raw":{
            "success":true,
            "message":"Loaded 0 entries",
            "data":[
            ],
            "errors":null,
            "total":0,
            "warnings":null,
            "metaData":{
                "root":"data",
                "fields":[
                ],
                "columns":[
                ],
                "severities":{
                    "normal":0,
                    "unknown":0,
                    "info":0,
                    "minor":0,
                    "major":102,
                    "critical":147,
                    "all":249,
                    "sum":700295
                }
            }
        }
    }
]
Nested Schema : items
Type: object
Show Source
  • The number of unique events (ie Rows).
    Example: 0
  • The highest severity value among the filtered events.
    Example: normal
  • The event filter ID.
  • Loading States
    Example: false
  • SeverityValues
    The array of event severity counts in the order from Normal to Critical. The order of severity in the list is: Normal, Unknown, Info, Minor, Major, Critical.
  • The sum of count is the total count, SUM(Count),of all events. Each event can be deduplicated and the count for each one can be more than 1. Sum includes everything. For example, for a device with 2 events, the first with a count of 1 and the second with a count of 9; the Count is 2, and the SumOfCount is 10.
    Example: 0
Nested Schema : SeverityValues
Type: array
The array of event severity counts in the order from Normal to Critical. The order of severity in the list is: Normal, Unknown, Info, Minor, Major, Critical.
Show Source
Example:
[
    0,
    0,
    0,
    0,
    0
]

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
Back to Top