Event
An Event is an alarm raised by an external monitoring system and collected by a Cloudforet plugin.
Package : spaceone.api.monitoring.v1
Event
Event Methods:
Method | Request | Response |
---|---|---|
create
POST /monitoring/v1/webhook/{webhook_id}/{access_key}/events
Creates a new Event. The Event creation process starts with validation checking whether the input data is from a webhook or not. After the input data is validated, the data is processed and used to create the Event.
Type | Message |
---|---|
Request | |
Response |
get
GET /monitoring/v1/event/{event_id}
Gets a specific Event matching the input parameters,
event_id
anddomain_id
. Prints detailed information about the Event.
Type | Message |
---|---|
Request | |
Response |
list
GET /monitoring/v1/events
POST /monitoring/v1/events/search
Gets a list of all Events. You must specify the
domain_id
. You can use a query to get a filtered list of Events.
Type | Message |
---|---|
Request | |
Response |
stat
POST /monitoring/v1/events/stat
Type | Message |
---|---|
Request | |
Response |
Message
CreateEventRequest
Field | Type | Required | Description |
---|---|---|---|
webhook_id | string | ✔ | |
access_key | string | ✔ | |
data | ✔ |
EventInfo
Field | Type | Description |
---|---|---|
event_id | string | |
event_key | string | |
event_type | string | |
title | string | |
description | string | |
severity | string | |
rule | string | |
resource | ||
provider | string | |
account | string | |
image_url | string | |
raw_data | ||
additional_info | ||
alert_id | string | |
webhook_id | string | |
project_id | string | |
domain_id | string | |
created_at | string | |
occurred_at | string |
EventQuery
Field | Type | Required | Description |
---|---|---|---|
query | ✘ | ||
event_id | string | ✘ | |
event_key | string | ✘ | |
event_type | string | ✘ | |
severity | string | ✘ | |
resource_id | string | ✘ | |
provider | string | ✘ | |
account | string | ✘ | |
alert_id | string | ✘ | |
webhook_id | string | ✘ | |
project_id | string | ✘ | |
domain_id | string | ✘ |
EventResource
Field | Type | Description |
---|---|---|
resource_id | string | |
resource_type | string | |
name | string |
EventStatQuery
Field | Type | Required | Description |
---|---|---|---|
query | ✔ | ||
domain_id | string | ✔ |
EventsInfo
Field | Type | Description |
---|---|---|
results | ||
total_count |
GetEventRequest
Field | Type | Required | Description |
---|---|---|---|
event_id | string | ✔ | |
domain_id | string | ✔ | |
only | list of string | ✘ |
Last updated