Updating a Custom Alarm Template
Function
This API is used to update a custom alarm template.
Debugging
You can debug this API through automatic authentication in API Explorer or use the SDK sample code generated by API Explorer.
Authorization Information
Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.
- If you are using role/policy-based authorization, see Permissions Policies and Supported Actions for details on the required permissions.
- If you are using identity policy-based authorization, the following identity policy-based permissions are required.
Action
Access Level
Resource Type (*: required)
Condition Key
Alias
Dependencies
ces:customAlarmTemplates:put
Write
-
g:EnterpriseProjectId
-
-
URI
PUT /V1.0/{project_id}/alarm-template/{template_id}
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| project_id | Yes | String | Definition Project ID. It is used to specify the project that an asset belongs to. You can query the assets of a project by project ID. You can obtain the project ID from the API or console. For details, see Obtaining a Project ID. Constraints N/A Range 1 to 64 characters. Default Value N/A |
| template_id | Yes | String | Definition ID of the custom alarm template to update. Example: at1603330892378wkDm77y6B Constraints N/A Range The value starts with at and allows a maximum of 64 characters. It can contain letters and digits. Default Value N/A |
Request Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| Content-Type | No | String | Definition MIME type of the request body. Constraints N/A Range 1 to 64 characters Default Value Default value application/json; charset=UTF-8 is recommended. For APIs used to upload objects or images, the MIME type varies with the flow type. |
| X-Auth-Token | No | String | Definition User token. Constraints N/A Range 1 to 16,384 characters Default Value N/A |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| template_name | Yes | String | Definition Name of a custom alarm template. Constraints N/A Range The value allows 1 to 128 characters and can only contain letters, digits, underscores (_), and hyphens (-). Default Value N/A |
| template_description | No | String | Definition Details about the custom alarm template. Constraints N/A Range 0 to 256 characters. Default Value N/A |
| namespace | Yes | String | Definition Service namespace, which is the resource type selected when you create a custom alarm template. For example, the ECS namespace is SYS.ECS . For details about the namespace of each service, see Services Interconnected with Cloud Eye. Constraints N/A Range The value is in the service.item format. The values of service and item must start with a letter and contain only letters, digits, and underscores (_). It can contain 3 to 32 characters. Default Value N/A |
| dimension_name | Yes | String | Definition Metric dimension corresponding to the resource type. If the ECS resource type is selected, the value of dimension_name is instance_id . For details about the dimension names of each resource, see their service documentation. You can navigate there from Services Interconnected with Cloud Eye. Constraints N/A Range The value must start with a letter. Each dimension allows a maximum of 32 characters and can only contain digits, letters, underscores (_), and hyphens (-). Multiple dimensions are separated by commas (,). A maximum of four dimensions are supported. A maximum of 131 characters are allowed. Example: instance_id for single-dimension scenarios and instance_id,disk for multi-dimension scenarios. Default Value N/A |
| template_items | Yes | Array of TemplateItem objects | Alarm rules that you add to the custom alarm template. You can add up to 30 alarm rules. |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| metric_name | Yes | String | Definition Metric added to the alarm template. For example, you can add an ECS metric cpu_util . For details about the metric names of each service, see their documentation. You can navigate there from Services Interconnected with Cloud Eye. Constraints N/A Range 1 to 64 characters. Default Value N/A |
| condition | Yes | AlarmTemplateCondition object | Alarm policy you created for the custom alarm template. |
| alarm_level | No | Integer | Definition Alarm severity. Constraints N/A Range The value can be: Default Value N/A |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| comparison_operator | Yes | String | Definition Threshold symbol. Constraints The threshold symbols for metric alarms are >, >=, <, <=, =, !=, cycle_decrease, cycle_increase, and cycle_wave. The threshold symbols for event alarms are >, >=, <, <=, =, and !=. Range The value can be >, <, >=, <=, =, !=, cycle_decrease, cycle_increase, or cycle_wave. cycle_decrease indicates the decrease relative to the last period. cycle_increase indicates the increase relative to the last period. cycle_wave indicates the increase or decrease relative to the last period. |
| count | Yes | Integer | Definition Number of consecutive times that an alarm is triggered. Constraints N/A Range An integer ranging from 1 to 5. Default Value N/A |
| filter | Yes | String | Definition Data aggregation method. Constraints When period is set to 1 (original value), the filter field does not take effect. The default value of filter is average. The filter parameter takes effect only when period is greater than 1. Range The value can be: Default Value N/A |
| period | Yes | Integer | Definition Metric period, in seconds. For details about the original metric period for each cloud service, see Services Interconnected with Cloud Eye. ConstraintsThe value can be:
N/A Range N/A |
| unit | No | String | Definition Data unit. Constraints N/A Range 0 to 32 characters Default Value N/A |
| value | Yes | Number | Definition Alarm threshold. For detailed thresholds, see the value range of each metric in the appendix. For example, you can set ECS cpu_util in Services Interconnected with Cloud Eye to 80 . Constraints If there is only one threshold, value and alarm_level are used in pairs. If there are both hierarchical_value and value , hierarchical_value is used. Range -1.7976931348623157e+108 to 1.7976931348623157e+108 Default Value N/A |
| suppress_duration | No | Integer | Definition Alarm suppression duration, in seconds. This parameter corresponds to the last field in the alarm policy when you create an alarm rule. This field is used to mitigate frequent alarm occurrences. Constraints N/A Range The value can be:
Default Value N/A |
Response Parameters
Status code: 204
OK
Status code: 400
| Parameter | Type | Description |
|---|---|---|
| - | String | Request error. |
Status code: 401
| Parameter | Type | Description |
|---|---|---|
| - | String | The authentication information is not provided or is incorrect. |
Status code: 403
| Parameter | Type | Description |
|---|---|---|
| - | String | Access to the requested page is forbidden. |
Status code: 408
| Parameter | Type | Description |
|---|---|---|
| - | String | The request timed out. |
Status code: 429
| Parameter | Type | Description |
|---|---|---|
| - | String | Too many requests. |
Status code: 500
| Parameter | Type | Description |
|---|---|---|
| - | String | Failed to complete the request because of an internal service error. |
Status code: 503
| Parameter | Type | Description |
|---|---|---|
| - | String | The system is currently unavailable. |
Example Requests
{
"template_name" : "alarmTemplate-Test01",
"template_description" : "This API is used to update a custom alarm template.",
"namespace" : "SYS.ECS",
"dimension_name" : "instance_id",
"template_items" : [ {
"metric_name" : "cpu_util",
"condition" : {
"period" : 1,
"filter" : "average",
"comparison_operator" : ">=",
"value" : 90,
"unit" : "%",
"count" : 3,
"suppress_duration" : 300
},
"alarm_level" : 2
}, {
"metric_name" : "mem_util",
"condition" : {
"period" : 1,
"filter" : "average",
"comparison_operator" : ">=",
"value" : 90,
"unit" : "%",
"count" : 3,
"suppress_duration" : 600
},
"alarm_level" : 2
} ]
} Example Responses
None
Status Codes
| Status Code | Description |
|---|---|
| 204 | OK |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 408 | Request Timeout |
| 429 | Too Many Requests |
| 500 | Internal Server Error |
| 503 | Service Unavailable |
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