refactoring
This commit is contained in:
@@ -624,7 +624,7 @@ impl Detection {
|
||||
);
|
||||
println!("{}", output_str);
|
||||
if configs::CONFIG.read().unwrap().args.html_report.is_some() {
|
||||
html_report_stock.push(output_str);
|
||||
html_report_stock.push(format!("- {}", output_str));
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -666,7 +666,8 @@ impl Detection {
|
||||
)
|
||||
.ok();
|
||||
if configs::CONFIG.read().unwrap().args.html_report.is_some() {
|
||||
html_report_stock.push(output_str);
|
||||
html_report_stock.push(format!(
|
||||
"- {}", output_str));
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -684,7 +685,7 @@ impl Detection {
|
||||
)
|
||||
.ok();
|
||||
if configs::CONFIG.read().unwrap().args.html_report.is_some() {
|
||||
html_report_stock.push(output_str);
|
||||
html_report_stock.push(format!("- {}", output_str));
|
||||
}
|
||||
});
|
||||
|
||||
@@ -693,17 +694,13 @@ impl Detection {
|
||||
println!("{}", tmp_total_detect_output);
|
||||
println!();
|
||||
if configs::CONFIG.read().unwrap().args.html_report.is_some() {
|
||||
html_report_stock.push(tmp_total_detect_output);
|
||||
html_report_stock.push(format!("- {}", tmp_total_detect_output));
|
||||
}
|
||||
if !html_report_stock.is_empty() {
|
||||
for report_row in html_report_stock {
|
||||
let html_report_data = HTML_REPORTER.write().unwrap().md_datas.clone();
|
||||
htmlreport::add_md_data(
|
||||
html_report_data,
|
||||
"General Overview".to_string(),
|
||||
format!("- Analyzed event files: {}", report_row),
|
||||
);
|
||||
}
|
||||
htmlreport::add_md_data(
|
||||
"General Overview".to_string(),
|
||||
html_report_stock
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
18
src/main.rs
18
src/main.rs
@@ -323,15 +323,22 @@ impl App {
|
||||
|
||||
let analysis_end_time: DateTime<Local> = Local::now();
|
||||
let analysis_duration = analysis_end_time.signed_duration_since(analysis_start_time);
|
||||
let elapsed_output_str = format!("Elapsed Time: {}", &analysis_duration.hhmmssxxx());
|
||||
write_color_buffer(
|
||||
&BufferWriter::stdout(ColorChoice::Always),
|
||||
None,
|
||||
&format!("Elapsed Time: {}", &analysis_duration.hhmmssxxx()),
|
||||
true,
|
||||
&elapsed_output_str,
|
||||
true
|
||||
)
|
||||
.ok();
|
||||
println!();
|
||||
|
||||
if configs::CONFIG.read().unwrap().args.html_report.is_some() {
|
||||
let output_data = vec![
|
||||
format!("- {}", elapsed_output_str),
|
||||
"".to_string(),
|
||||
];
|
||||
htmlreport::add_md_data( "General Overview".to_string(), output_data);
|
||||
}
|
||||
// Qオプションを付けた場合もしくはパースのエラーがない場合はerrorのstackが0となるのでエラーログファイル自体が生成されない。
|
||||
if ERROR_LOG_STACK.lock().unwrap().len() > 0 {
|
||||
AlertMessage::create_error_log(ERROR_LOG_PATH.to_string());
|
||||
@@ -537,10 +544,7 @@ impl App {
|
||||
format!("- {}", total_size_output),
|
||||
"".to_string(),
|
||||
];
|
||||
for output in output_data {
|
||||
let html_report_data = HTML_REPORTER.write().unwrap().md_datas.clone();
|
||||
htmlreport::add_md_data(html_report_data, "General Overview".to_string(), output);
|
||||
}
|
||||
htmlreport::add_md_data("General Overview".to_string(), output_data);
|
||||
}
|
||||
|
||||
let rule_files = detection::Detection::parse_rule_files(
|
||||
|
||||
Reference in New Issue
Block a user