Note
A Note is a comment on an Event, and is used for incident management.
Package : spaceone.api.monitoring.v1
Note
Note Methods:
Method | Request | Response |
---|---|---|
create
POST /monitoring/v1/notes
Creates a new Note. You can create Notes for each Alert to record the information needed to manage the Alerts.
Type | Message |
---|---|
Request | |
Response |
update
PUT /monitoring/v1/note/{note_id}
Updates a specific Note. You must specify the
note_id
for Note validation check. If the Note exists, it is updated.
Type | Message |
---|---|
Request | |
Response |
delete
DELETE /monitoring/v1/note/{note_id}
Deletes a specific Note. You must specify the
note_id
of the Note to delete.
Type | Message |
---|---|
Request | |
Response |
get
GET /monitoring/v1/note/{note_id}
Gets a specific Note. You must specify the
note_id
anddomain_id
.
Type | Message |
---|---|
Request | |
Response |
list
GET /monitoring/v1/notes
POST /monitoring/v1/notes/search
Gets a list of all Notes. You can use a query to get a filtered list of Notes.
stat
POST /monitoring/v1/notes/stat
Type | Message |
---|---|
Request | |
Response |
Message
CreateNoteRequest
Field | Type | Required | Description |
---|---|---|---|
alert_id | string | ✔ | |
note | string | ✔ | |
domain_id | string | ✔ |
GetNoteRequest
Field | Type | Required | Description |
---|---|---|---|
note_id | string | ✔ | |
domain_id | string | ✔ | |
only | list of string | ✘ |
NoteInfo
Field | Type | Description |
---|---|---|
note_id | string | |
alert_id | string | |
note | string | |
created_by | string | |
project_id | string | |
domain_id | string | |
created_at | string |
NoteQuery
Field | Type | Required | Description |
---|---|---|---|
query | ✘ | ||
note_id | string | ✘ | |
alert_id | string | ✘ | |
created_by | string | ✘ | |
project_id | string | ✘ | |
domain_id | string | ✘ |
NoteRequest
Field | Type | Required | Description |
---|---|---|---|
note_id | string | ✔ | |
domain_id | string | ✔ |
NoteStatQuery
Field | Type | Required | Description |
---|---|---|---|
query | ✔ | ||
domain_id | string | ✔ |
NotesInfo
Field | Type | Description |
---|---|---|
results | ||
total_count |
UpdateNoteRequest
Field | Type | Required | Description |
---|---|---|---|
note_id | string | ✔ | |
note | string | ✘ | |
domain_id | string | ✔ |
Last updated