AlarmTaskProps
Properties for defining a AlarmTask.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ess-alarmtask
Initializer
import com.aliyun.ros.cdk.ess.AlarmTaskProps;
AlarmTaskProps.builder()
.alarmAction(IResolvable)
.alarmAction(java.util.List<java.lang.String)
.alarmAction(IResolvable>)
.metricName(java.lang.String)
.metricName(IResolvable)
.scalingGroupId(java.lang.String)
.scalingGroupId(IResolvable)
.threshold(java.lang.Number)
.threshold(IResolvable)
// .comparisonOperator(java.lang.String)
// .comparisonOperator(IResolvable)
// .description(java.lang.String)
// .description(IResolvable)
// .dimensions(IResolvable)
// .dimensions(java.util.List<IResolvable)
// .dimensions(DimensionsProperty>)
// .evaluationCount(java.lang.Number)
// .evaluationCount(IResolvable)
// .groupId(java.lang.Number)
// .groupId(IResolvable)
// .metricType(java.lang.String)
// .metricType(IResolvable)
// .name(java.lang.String)
// .name(IResolvable)
// .period(java.lang.Number)
// .period(IResolvable)
// .statistics(java.lang.String)
// .statistics(IResolvable)
.build();
Properties
| Name | Type | Description |
|---|---|---|
alarmAction | com.aliyun.ros.cdk.core.IResolvable OR java.util.List | Property alarmAction: The list of unique identifiers of the scaling rules that are associated with the event-triggered task. |
metricName | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property metricName: The name of the metric. |
scalingGroupId | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property scalingGroupId: The ID of the scaling group. |
threshold | java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable | Property threshold: The threshold of a metric in the multi-metric alert rule. |
comparisonOperator | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property comparisonOperator: The operator that is used to compare the metric value and the metric threshold. |
description | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property description: The description of the event-triggered task. |
dimensions | com.aliyun.ros.cdk.core.IResolvable OR java.util.List | Property dimensions: Dimensions. |
evaluationCount | java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable | Property evaluationCount: The number of times that the threshold must be reached before a scaling rule can be executed. |
groupId | java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable | Property groupId: The ID of the application group to which the custom metric belongs. |
metricType | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property metricType: The type of the metric. |
name | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property name: The name of the event-triggered task. |
period | java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable | Property period: The period of time during which statistics about the metric is collected. |
statistics | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property statistics: The method that is used to aggregate statistics for the metric. |
alarmActionRequired
public java.lang.Object getAlarmAction();
- Type: com.aliyun.ros.cdk.core.IResolvable OR java.util.List
Property alarmAction: The list of unique identifiers of the scaling rules that are associated with the event-triggered task.
metricNameRequired
public java.lang.Object getMetricName();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
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
public java.lang.Object getScalingGroupId();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property scalingGroupId: The ID of the scaling group.
thresholdRequired
public java.lang.Object getThreshold();
- Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable
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
public java.lang.Object getComparisonOperator();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
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
public java.lang.Object getDescription();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property description: The description of the event-triggered task.
dimensionsOptional
public java.lang.Object getDimensions();
- Type: com.aliyun.ros.cdk.core.IResolvable OR java.util.List
DimensionsProperty>
Property dimensions: Dimensions.
evaluationCountOptional
public java.lang.Object getEvaluationCount();
- Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable
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
public java.lang.Object getGroupId();
- Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable
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
public java.lang.Object getMetricType();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property metricType: The type of the metric.
Valid values:
- system: system metrics of CloudMonitor
- custom: custom metrics that are reported to CloudMonitor
nameOptional
public java.lang.Object getName();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property name: The name of the event-triggered task.
periodOptional
public java.lang.Object getPeriod();
- Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable
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
public java.lang.Object getStatistics();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property statistics: The method that is used to aggregate statistics for the metric.
Valid values:
- Average
- Minimum
- Maximum