Querying Events and Alarms
Function
This API is used to query events and alarms of a user.
Calling Method
For details, see Calling APIs.
URI
POST /v2/{project_id}/events
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID, which can be obtained from the console or by calling an API. For details, see Obtaining a Project ID. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
type |
No |
String |
Type of information to be queried.
Enumeration values:
|
limit |
No |
Integer |
Maximum number of records returned for each query. Default: 1,000. |
marker |
No |
String |
Pagination marker. The initial value is 0, and the subsequent value is the value of next_marker in the response body. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token obtained from IAM. For details, see Obtaining a Token. |
Content-Type |
Yes |
String |
Message body type or format. Content type, which is application/json. Enumeration values:
|
Enterprise-Project-Id |
No |
String |
Enterprise project ID.
|
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
time_range |
Yes |
String |
Time range specified to query data of the last N minutes when the client time is inconsistent with the server time. It can also be used to accurately query the data of a specified period. Example:
Format: startTimeInMillis.endTimeInMillis.durationInMinutes Parameter description:
For example, -1.1650852300000.5 is equivalent to 1650852000000.1650852300000.5.
For example, 1650852000000.-1.5 is equivalent to 1650852000000.1650852300000.5.
If both the start time and end time are set to -1, the system sets the end time to the current UTC time (in milliseconds) and calculates the start time as follows: endTimeInMillis – durationInMinutes × 60 × 1000. For example, -1.-1.60 indicates the latest 60 minutes. Constraint: In a single request, the following condition must be met: durationInMinutes × 60/period ≤ 1,440 |
step |
No |
Long |
Statistical step (unit: ms). For example, if the statistical step is one minute, set this parameter to 60,000. |
search |
No |
String |
Field specified for fuzzy query, which can be left blank. If this field is not left blank, fuzzy query can be performed accordingly. In that case, the metadata field is mandatory. |
sort |
No |
sort object |
Sorting order, which can be left blank. |
metadata_relation |
No |
Array of RelationModel objects |
Combination of search criteria, which can be left blank. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
order_by |
No |
Array of strings |
List of sorted fields. Fields in this list are sorted based on the specified order. |
order |
No |
String |
Sorting order. asc: ascending order. desc: descending order. Enumeration values:
|
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
key |
No |
String |
Key specified for query, which corresponds to the key in the metadata. |
value |
No |
Array of strings |
Value of the specified key in the search criterion. |
relation |
No |
String |
Relationship between search criteria.
Enumeration values:
|
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
events |
Array of ListEventModel objects |
Event or alarm details. |
page_info |
PageInfo object |
Pagination information. |
Parameter |
Type |
Description |
---|---|---|
starts_at |
Long |
Time when an event or alarm is generated (CST timestamp precise down to the millisecond). |
ends_at |
Long |
Time when an event or alarm is cleared (CST timestamp precise down to the millisecond). 0: The event or alarm is not deleted. |
timeout |
Long |
After how long will an alarm be automatically cleared. Unit: ms. For example, if an alarm is cleared after 1 minute, set this parameter to 60000. The default value is 5 days (that is, 5 days × 24 hours × 60 minutes × 60,000 ms). |
metadata |
Map<String,String> |
Details of an event or alarm. The value is a key-value pair. The following fields are mandatory:
|
annotations |
Map<String,Object> |
Additional field for an event or alarm, which can be left blank. |
attach_rule |
Map<String,Object> |
Reserved field for an event or alarm, which can be left blank. |
id |
String |
Event or alarm ID, which is automatically generated by the system. |
event_sn |
String |
Alarm serial number. |
arrives_at |
Long |
Time when an event arrives at the system (CST timestamp precise down to the millisecond). |
enterprise_project_id |
String |
ID of the enterprise project to which the event or alarm belongs. |
policy |
Map<String,Object> |
Open alarm policy. |
Parameter |
Type |
Description |
---|---|---|
current_count |
Integer |
Total number of events and alarms on the current page. |
previous_marker |
String |
Previous marker. |
next_marker |
String |
Next marker. |
Status code: 400
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
error_type |
String |
API call failure type. |
trace_id |
String |
Request ID. |
Status code: 401
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
error_type |
String |
API call failure type. |
trace_id |
String |
Request ID. |
Status code: 403
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
error_type |
String |
API call failure type. |
trace_id |
String |
Request ID. |
Status code: 500
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
error_type |
String |
API call failure type. |
trace_id |
String |
Request ID. |
Status code: 503
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
error_type |
String |
API call failure type. |
trace_id |
String |
Request ID. |
Example Requests
Query the events and alarms of a specified user.
https://{endpoint}/v2/{project_id}/events { "time_range" : "-1.-1.30", "metadata_relation" : [ { "key" : "event_type", "relation" : "AND", "value" : [ "alarm" ] }, { "key" : "event_severity", "relation" : "AND", "value" : [ "Critical", "Major", "Minor", "Info" ] } ], "search" : "", "sort" : { "order_by" : [ "starts_at" ], "order" : "desc" } }
Example Responses
Status code: 200
OK: The request is successful.
{ "events" : [ { "annotations" : { "alarm_fix_suggestion_zh_cn" : "Suggestions", "alarm_probableCause_zh_cn" : "Possible Causes", "message" : "Alarm Details" }, "arrives_at" : 16377362908000, "ends_at" : 0, "enterprise_project_id" : "0", "event_sn" : "1283514476372426755", "id" : "6775161208461480000", "metadata" : { "event_name" : "test", "event_severity" : "Major", "event_type" : "alarm", "resource_id" : "ecs123", "resource_provider" : "ecs", "resource_type" : "vm" }, "policy" : { }, "starts_at" : 16377362908000, "timeout" : 60000 } ], "page_info" : { "current_count" : 1, "next_marker" : "", "previous_marker" : "0" } }
Status code: 400
Bad Request: The request is invalid. The client should not repeat the request without modifications.
{ "error_code" : "AOM.08032002", "error_message" : "The request body is illegal", "error_type" : "SC_BAD_REQUEST" }
Status code: 401
Unauthorized: The authentication information is incorrect or invalid.
{ "error_code" : "AOM.0403", "error_message" : "auth failed.", "error_type" : "AUTH_FAILED", "trace_id" : null }
Status code: 403
Forbidden: The request is rejected. The server has received the request and understood it, but the server refuses to respond to it. The client should not repeat the request without modifications.
{ "error_code" : "AOM.0403", "error_message" : "auth failed.", "error_type" : "AUTH_FAILED", "trace_id" : null }
Status code: 500
Internal Server Error: The server is able to receive the request but unable to understand the request.
{ "error_code" : "APM.00000500", "error_message" : "Internal Server Error", "trace_id" : null }
Status code: 503
Service Unavailable: The requested service is invalid. The client should not repeat the request without modifications.
{ "error_code" : "AOM.0503", "error_message" : "SC_NOT_IMPLEMENTED", "error_type" : "SC_NOT_IMPLEMENTED" }
SDK Sample Code
The SDK sample code is as follows.
Java
Query the events and alarms of a specified user.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
package com.huaweicloud.sdk.test; import com.huaweicloud.sdk.core.auth.ICredential; import com.huaweicloud.sdk.core.auth.BasicCredentials; import com.huaweicloud.sdk.core.exception.ConnectionException; import com.huaweicloud.sdk.core.exception.RequestTimeoutException; import com.huaweicloud.sdk.core.exception.ServiceResponseException; import com.huaweicloud.sdk.aom.v2.region.AomRegion; import com.huaweicloud.sdk.aom.v2.*; import com.huaweicloud.sdk.aom.v2.model.*; import java.util.List; import java.util.ArrayList; public class ListEventsSolution { public static void main(String[] args) { // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security. // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment String ak = System.getenv("CLOUD_SDK_AK"); String sk = System.getenv("CLOUD_SDK_SK"); String projectId = "{project_id}"; ICredential auth = new BasicCredentials() .withProjectId(projectId) .withAk(ak) .withSk(sk); AomClient client = AomClient.newBuilder() .withCredential(auth) .withRegion(AomRegion.valueOf("<YOUR REGION>")) .build(); ListEventsRequest request = new ListEventsRequest(); EventQueryParam2 body = new EventQueryParam2(); List listMetadataRelationValue = new ArrayList<>(); listMetadataRelationValue.add("Critical"); listMetadataRelationValue.add("Major"); listMetadataRelationValue.add("Minor"); listMetadataRelationValue.add("Info"); List listMetadataRelationValue1 = new ArrayList<>(); listMetadataRelationValue1.add("alarm"); List listbodyMetadataRelation = new ArrayList<>(); listbodyMetadataRelation.add( new RelationModel() .withKey("event_type") .withValue(listMetadataRelationValue1) .withRelation(RelationModel.RelationEnum.fromValue("AND")) ); listbodyMetadataRelation.add( new RelationModel() .withKey("event_severity") .withValue(listMetadataRelationValue) .withRelation(RelationModel.RelationEnum.fromValue("AND")) ); List listSortOrderBy = new ArrayList<>(); listSortOrderBy.add("starts_at"); EventQueryParam2Sort sortbody = new EventQueryParam2Sort(); sortbody.withOrderBy(listSortOrderBy) .withOrder(EventQueryParam2Sort.OrderEnum.fromValue("desc")); body.withMetadataRelation(listbodyMetadataRelation); body.withSort(sortbody); body.withSearch(""); body.withTimeRange("-1.-1.30"); request.withBody(body); try { ListEventsResponse response = client.listEvents(request); System.out.println(response.toString()); } catch (ConnectionException e) { e.printStackTrace(); } catch (RequestTimeoutException e) { e.printStackTrace(); } catch (ServiceResponseException e) { e.printStackTrace(); System.out.println(e.getHttpStatusCode()); System.out.println(e.getRequestId()); System.out.println(e.getErrorCode()); System.out.println(e.getErrorMsg()); } } } |
Python
Query the events and alarms of a specified user.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# coding: utf-8 import os from huaweicloudsdkcore.auth.credentials import BasicCredentials from huaweicloudsdkaom.v2.region.aom_region import AomRegion from huaweicloudsdkcore.exceptions import exceptions from huaweicloudsdkaom.v2 import * if __name__ == "__main__": # The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security. # In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment ak = os.environ["CLOUD_SDK_AK"] sk = os.environ["CLOUD_SDK_SK"] projectId = "{project_id}" credentials = BasicCredentials(ak, sk, projectId) client = AomClient.new_builder() \ .with_credentials(credentials) \ .with_region(AomRegion.value_of("<YOUR REGION>")) \ .build() try: request = ListEventsRequest() listValueMetadataRelation = [ "Critical", "Major", "Minor", "Info" ] listValueMetadataRelation1 = [ "alarm" ] listMetadataRelationbody = [ RelationModel( key="event_type", value=listValueMetadataRelation1, relation="AND" ), RelationModel( key="event_severity", value=listValueMetadataRelation, relation="AND" ) ] listOrderBySort = [ "starts_at" ] sortbody = EventQueryParam2Sort( order_by=listOrderBySort, order="desc" ) request.body = EventQueryParam2( metadata_relation=listMetadataRelationbody, sort=sortbody, search="", time_range="-1.-1.30" ) response = client.list_events(request) print(response) except exceptions.ClientRequestException as e: print(e.status_code) print(e.request_id) print(e.error_code) print(e.error_msg) |
Go
Query the events and alarms of a specified user.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
package main import ( "fmt" "github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic" aom "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/aom/v2" "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/aom/v2/model" region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/aom/v2/region" ) func main() { // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security. // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment ak := os.Getenv("CLOUD_SDK_AK") sk := os.Getenv("CLOUD_SDK_SK") projectId := "{project_id}" auth := basic.NewCredentialsBuilder(). WithAk(ak). WithSk(sk). WithProjectId(projectId). Build() client := aom.NewAomClient( aom.AomClientBuilder(). WithRegion(region.ValueOf("<YOUR REGION>")). WithCredential(auth). Build()) request := &model.ListEventsRequest{} var listValueMetadataRelation = []string{ "Critical", "Major", "Minor", "Info", } var listValueMetadataRelation1 = []string{ "alarm", } keyMetadataRelation:= "event_type" relationMetadataRelation:= model.GetRelationModelRelationEnum().AND keyMetadataRelation1:= "event_severity" relationMetadataRelation1:= model.GetRelationModelRelationEnum().AND var listMetadataRelationbody = []model.RelationModel{ { Key: &keyMetadataRelation, Value: &listValueMetadataRelation1, Relation: &relationMetadataRelation, }, { Key: &keyMetadataRelation1, Value: &listValueMetadataRelation, Relation: &relationMetadataRelation1, }, } var listOrderBySort = []string{ "starts_at", } orderSort:= model.GetEventQueryParam2SortOrderEnum().DESC sortbody := &model.EventQueryParam2Sort{ OrderBy: &listOrderBySort, Order: &orderSort, } searchEventQueryParam2:= "" request.Body = &model.EventQueryParam2{ MetadataRelation: &listMetadataRelationbody, Sort: sortbody, Search: &searchEventQueryParam2, TimeRange: "-1.-1.30", } response, err := client.ListEvents(request) if err == nil { fmt.Printf("%+v\n", response) } else { fmt.Println(err) } } |
More
For SDK sample code of more programming languages, see the Sample Code tab in API Explorer. SDK sample code can be automatically generated.
Status Codes
Status Code |
Description |
---|---|
200 |
OK: The request is successful. |
400 |
Bad Request: The request is invalid. The client should not repeat the request without modifications. |
401 |
Unauthorized: The authentication information is incorrect or invalid. |
403 |
Forbidden: The request is rejected. The server has received the request and understood it, but the server refuses to respond to it. The client should not repeat the request without modifications. |
500 |
Internal Server Error: The server is able to receive the request but unable to understand the request. |
503 |
Service Unavailable: The requested service is invalid. The client should not repeat the request without modifications. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot