CDKでのECS環境構築の際にContainer Insightsを有効にする
aws-ecs moduleを使ってCDKでECS環境構築をした。
その際にコンテナ情報のモニタリングをするためにContainer Insightsを有効化した。
Cluster作成時にcontainerInsightsフラグを有効にすれば設定できる。
import * as ecs from '@aws-cdk/aws-ecs'
const cluster = new ecs.Cluster(this, `EcsCluster`, {
vpc: vpc,
clusterName: `EcsCluster`,
containerInsights: true,
})