AlarmTaskProps
Properties for defining a AlarmTask.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ess-alarmtask
Initializer
import "github.com/alibabacloud-go/ros-cdk/alicloudroscdkess"
&alicloudroscdkess.AlarmTaskProps {
AlarmAction: interface{},
MetricName: interface{},
ScalingGroupId: interface{},
Threshold: interface{},
ComparisonOperator: interface{},
Description: interface{},
Dimensions: interface{},
EvaluationCount: interface{},
GroupId: interface{},
MetricType: interface{},
Name: interface{},
Period: interface{},
Statistics: interface{},
}
Properties
| Name | Type | Description |
|---|---|---|
AlarmAction | interface{} | Property alarmAction: The list of unique identifiers of the scaling rules that are associated with the event-triggered task. |
MetricName | interface{} | Property metricName: The name of the metric. |
ScalingGroupId | interface{} | Property scalingGroupId: The ID of the scaling group. |
Threshold | interface{} | Property threshold: The threshold of a metric in the multi-metric alert rule. |
ComparisonOperator | interface{} | Property comparisonOperator: The operator that is used to compare the metric value and the metric threshold. |
Description | interface{} | Property description: The description of the event-triggered task. |
Dimensions | interface{} | Property dimensions: Dimensions. |
EvaluationCount | interface{} | Property evaluationCount: The number of times that the threshold must be reached before a scaling rule can be executed. |
GroupId | interface{} | Property groupId: The ID of the application group to which the custom metric belongs. |
MetricType | interface{} | Property metricType: The type of the metric. |
Name | interface{} | Property name: The name of the event-triggered task. |
Period | interface{} | Property period: The period of time during which statistics about the metric is collected. |
Statistics | interface{} | Property statistics: The method that is used to aggregate statistics for the metric. |
AlarmActionRequired
AlarmAction interface{}
- Type: interface{}
Property alarmAction: The list of unique identifiers of the scaling rules that are associated with the event-triggered task.
MetricNameRequired
MetricName interface{}
- Type: interface{}
Property metricName: The name of the metric.
Valid values of MetricName vary based on the value of MetricType.
- If you set MetricType to custom, the valid values of MetricName are your custom metrics.
- If you set MetricType to system, MetricName has the following valid values:
- CpuUtilization: (ECS) the CPU utilization. Unit: %.
- IntranetTx: the outbound traffic over the internal network from an ECS instance. Unit: KB/min.
- IntranetRx: the inbound traffic over the internal network to an ECS instance. Unit: KB/min.
- VpcInternetTx: the outbound traffic over the Internet from an ECS instance that resides in a virtual private cloud (VPC). Unit: KB/min.
- VpcInternetRx: the inbound traffic over the Internet to an ECS instance that resides in a VPC. Unit: KB/min.
- SystemDiskReadBps: the number of bytes read from the system disk that is used by an ECS instance per second.
- SystemDiskWriteBps: the number of bytes written to the system disk that is used by an ECS instance per second.
- SystemDiskReadOps: the number of read operations on the system disk that is used by an ECS instance per second.
- SystemDiskWriteOps: the number of write operations on the system disk that is used by an ECS instance per second.
- CpuUtilizationAgent: the CPU utilization of an agent. Unit: %.
- GpuMemoryFreeUtilizationAgent: the percentage of idle GPU memory of an agent.
- GpuMemoryUtilizationAgent: the GPU memory usage of an agent. Unit: %.
- MemoryUtilization: the memory usage of an agent. Unit: %.
- LoadAverage: the average system load of an agent.
- TcpConnection: the total number of TCP connections of an agent.
- TcpConnection: the number of established TCP connections of an agent.
- PackagesNetOut: the number of packets that are sent by the internal network interface controller (NIC) used by an agent.
- PackagesNetIn: the number of packets that are received by the internal NIC used by an agent.
- EciPodCpuUtilization: the CPU utilization of an elastic container instance. Unit: %.
- EciPodMemoryUtilization: the memory usage of an elastic container instance. Unit: %.
ScalingGroupIdRequired
ScalingGroupId interface{}
- Type: interface{}
Property scalingGroupId: The ID of the scaling group.
ThresholdRequired
Threshold interface{}
- Type: interface{}
Property threshold: The threshold of a metric in the multi-metric alert rule.
If the threshold is reached the specified number of times within the specified period, a scaling rule is executed.
ComparisonOperatorOptional
ComparisonOperator interface{}
- Type: interface{}
Property comparisonOperator: The operator that is used to compare the metric value and the metric threshold.
Valid values:
- If the metric value is greater than or equal to the metric threshold, set the value to
>=. - If the metric value is less than or equal to the metric threshold, set the value to
<=. - If the metric value is greater than the metric threshold, set the value to
>. - If the metric value is less than the metric threshold, set the value to
<.
DescriptionOptional
Description interface{}
- Type: interface{}
Property description: The description of the event-triggered task.
DimensionsOptional
Dimensions interface{}
- Type: interface{}
Property dimensions: Dimensions.
EvaluationCountOptional
EvaluationCount interface{}
- Type: interface{}
Property evaluationCount: The number of times that the threshold must be reached before a scaling rule can be executed.
For example, if you set this parameter to 3, the average CPU utilization must reach or exceed 80% three times in a row before a scaling rule is triggered.
GroupIdOptional
GroupId interface{}
- Type: interface{}
Property groupId: The ID of the application group to which the custom metric belongs.
This parameter must be specified when MetricType is set to custom.
MetricTypeOptional
MetricType interface{}
- Type: interface{}
Property metricType: The type of the metric.
Valid values:
- system: system metrics of CloudMonitor
- custom: custom metrics that are reported to CloudMonitor
NameOptional
Name interface{}
- Type: interface{}
Property name: The name of the event-triggered task.
PeriodOptional
Period interface{}
- Type: interface{}
Property period: The period of time during which statistics about the metric is collected.
Unit: seconds. Valid values:
- 15
- 60
- 120
- 300
- 900
If your scaling group is of the ECS type and uses CloudMonitor metrics, you can set Period to 15. In other cases, you can set Period to 60, 120, 300, or 900. In most cases, the name of a CloudMonitor metric contains Agent.
StatisticsOptional
Statistics interface{}
- Type: interface{}
Property statistics: The method that is used to aggregate statistics for the metric.
Valid values:
- Average
- Minimum
- Maximum