in src/main/java/com/aws/amazonmq/blog/util/CSVUtil.java [26:33]
public static void writeGetMetricsToFile(Path path, List<GetMsgMetric> getMsgMetricList) throws Exception {
Writer writer = new FileWriter(path.toString());
StatefulBeanToCsv<GetMsgMetric> sbc = new StatefulBeanToCsvBuilder<GetMsgMetric>(writer)
.withSeparator(CSVWriter.DEFAULT_SEPARATOR).build();
sbc.write(getMsgMetricList);
writer.close();
writer.close();
}