慕斯709654
2023-04-14 15:08:06
我創(chuàng)建了一個 ECS 集群,如下所示: this.cluster = new ecs.Cluster(this, 'Cluster', { containerInsights: true, vpc: ec2.Vpc.fromLookup(this, props.stage + 'Vpc', {isDefault: false}) });我想像這樣基于我的 cluser 創(chuàng)建一個 CW 警報: const CPUHigh = new cw.Alarm(this, "CPUHigh", { metric: this.cluster.metric("CPUUtilized"), threshold: 50, evaluationPeriods: 3, period: cdk.Duration.seconds(60), comparisonOperator: cw.ComparisonOperator.GREATER_THAN_THRESHOLD })但即使該指標(biāo)與 Container Insights 創(chuàng)建的指標(biāo)相匹配,它似乎也不能以這種方式引用。有誰知道它應(yīng)該被引用的方式?
1 回答

largeQ
TA貢獻(xiàn)2039條經(jīng)驗 獲得超8個贊
CDK 僅支持某些指標(biāo)基線,不包括容器洞察力,但這不是問題,您可以很容易地創(chuàng)建自己的指標(biāo)對象。對于容器洞察,它看起來像這樣:
new cloudwatch.Metric({
metricName: 'NetworkTxBytes',
namespace: 'ECS/ContainerInsights',
dimensionsMap: {
ServiceName: props.ecsService.serviceName,
ClusterName: props.ecsCluster.clusterName,
},
statistic: 'avg',
period: cdk.Duration.minutes(5),
}),
此處重要的是命名空間、dimensionsMap 和 metricName。
您可以從指標(biāo)控制臺和最后一個選項卡“源”中獲取有關(guān)命名空間和維度的信息。
添加回答
舉報
0/150
提交
取消