for (ReporterConfiguration rc : config.getReporters()) {
for (ReporterConfiguration.Report rcr : rc.getReports()) {
try {
Reporter reporter = ReporterHelper.createReporter(rc.type, rcr.getProperties());
if (reporter instanceof SerializedReporter) continue;
reporter.run(reports);
} catch (Exception e) {
System.err.println("Failed to run reporter " + rc.type);
e.printStackTrace();
}
}