Disk events anomaly detection API - GET all events

Lists all existing disk event rules.

The request produces an application/json payload.

This request is an early adopter release and may be changed in non compatible way.

GET
  • Managed https://{your-domain}/e/{your-environment-id}/api/config/v1/anomalyDetection/diskEvents
  • SaaS https://{your-environment-id}.live.dexp.ae/api/config/v1/anomalyDetection/diskEvents

Parameters

The request doesn't provide any configurable parameters.

Response format

The StubList object

An ordered list of short representations of DESK entities.

Element Type Description
values EntityShortRepresentation[]

An ordered list of short representations of DESK entities.

The EntityShortRepresentation object

The short representation of a DESK entity.

Element Type Description
id string

The ID of the DESK entity.

name string

The name of the DESK entity.

description string

A short description of the DESK entity.

Example

In this example, the request lists all custom disk event rules of the environment.

The API token is passed in the Authorization header.

The request lists these custom disk event rules:

Custom disk events rule - list

Curl

curl -X GET \
  https://mySampleEnv.live.dexp.ae/api/config/v1/anomalyDetection/diskEvents \
  -H 'Authorization: Api-token abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dexp.ae/api/config/v1/anomalyDetection/diskEvents

Response body

{
  "values": [
    {
      "id": "3f7b8234-95dc-44d0-9c1b-a5f0e8e19fd0",
      "name": "low disk"
    }
  ]
}

Response code

200