in lib/template/pattern/cloudwatch-pattern.ts [67:81]
public createWidget2(name: string, metrics: cloudwatch.IMetric[], width?: number): cloudwatch.GraphWidget {
const widget = new cloudwatch.GraphWidget({
title: name,
left: metrics,
width: width,
view: cloudwatch.GraphWidgetView.TIME_SERIES,
stacked: false,
leftYAxis: {
min: 0,
max: 1,
showUnits: false
},
});
return widget;
}