actually fix csv reporter

This commit is contained in:
Jonathan Shook
2025-01-16 15:23:37 -06:00
parent db39d8149f
commit 2aa3455937

View File

@@ -434,7 +434,7 @@ public class NBCLI implements Function<String[], Integer>, NBLabeledElement {
options.wantsReportCsvTo().ifPresent(cfg -> {
MetricInstanceFilter filter = new MetricInstanceFilter();
filter.addPattern(cfg.pattern);
new CsvReporter(session, Path.of(cfg.file), cfg.millis, filter);
new CsvReporter(session, Path.of(cfg.file), cfg.millis, filter, getLabels());
});
options.wantsReportSqliteTo().ifPresent(cfg -> {