Feature/event stats#105 (#137)

Event集計機能実装

Co-authored-by: HajimeTakai <takai.wa.hajime@gmail.com>
This commit is contained in:
garigariganzy
2021-09-20 23:53:45 +09:00
committed by GitHub
parent 403844ae45
commit 76103d31f3
8 changed files with 319 additions and 36 deletions

View File

@@ -4,13 +4,13 @@ use crate::detections::rule::AggResult;
use serde_json::Value;
use tokio::{runtime::Runtime, spawn, task::JoinHandle};
use crate::detections::print::AlertMessage;
use crate::detections::print::MESSAGES;
use crate::detections::rule;
use crate::detections::rule::RuleNode;
use crate::detections::{print::AlertMessage, utils};
use crate::yaml::ParseYaml;
use std::{sync::Arc, usize};
use std::sync::Arc;
const DIRPATH_RULES: &str = "rules";