【发布时间】:2018-12-14 13:50:54
【问题描述】:
这是来自AWS document的CloudFormation Alarm的结构。
Type: "AWS::CloudWatch::Alarm"
Properties:
ActionsEnabled: Boolean
AlarmActions:
- String
AlarmDescription: String
AlarmName: String
ComparisonOperator: String
Dimensions:
- Dimension
EvaluateLowSampleCountPercentile: String
EvaluationPeriods: Integer
ExtendedStatistic: String
InsufficientDataActions:
- String
MetricName: String
Namespace: String
OKActions:
- String
Period: Integer
Statistic: String
Threshold: Double
TreatMissingData: String
Unit: String
但是,它似乎为总 lambda 函数指标的数字设置了警报,而不仅仅是针对特定函数,我找不到任何关于为特定函数设置警报的提及。
如何为特定功能设置闹钟?
【问题讨论】:
标签: amazon-web-services aws-lambda amazon-cloudformation amazon-cloudwatch