mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
This commit is contained in:
parent
1087d8b473
commit
fc7a0c4417
4 changed files with 8 additions and 6 deletions
|
@ -3,10 +3,10 @@
|
|||
"description": "Auditbeat: Detect unusual increases in process execution rates in docker containers (ECS)",
|
||||
"groups": ["auditd"],
|
||||
"analysis_config": {
|
||||
"bucket_span": "10m",
|
||||
"bucket_span": "1h",
|
||||
"detectors": [
|
||||
{
|
||||
"detector_description": "high_non_zero_count partition container.name",
|
||||
"detector_description": "High process rate in docker containers",
|
||||
"function": "high_count",
|
||||
"partition_field_name": "container.name"
|
||||
}
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
"description": "Auditbeat: Detect rare process executions in docker containers (ECS)",
|
||||
"groups": ["auditd"],
|
||||
"analysis_config": {
|
||||
"bucket_span": "10m",
|
||||
"bucket_span": "1h",
|
||||
"detectors": [
|
||||
{
|
||||
"detector_description": "Rare process execution in docker containers",
|
||||
"function": "rare",
|
||||
"by_field_name": "process.executable",
|
||||
"partition_field_name": "container.name"
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
"description": "Auditbeat Hosts: Detect unusual increases in process execution rates (ECS)",
|
||||
"groups": ["auditd"],
|
||||
"analysis_config": {
|
||||
"bucket_span": "10m",
|
||||
"bucket_span": "1h",
|
||||
"detectors": [
|
||||
{
|
||||
"detector_description": "high_non_zero_count partition host.name",
|
||||
"detector_description": "High process rate on hosts",
|
||||
"function": "high_non_zero_count",
|
||||
"partition_field_name": "host.name"
|
||||
}
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
"description": "Auditbeat Hosts: Detect rare process executions on hosts (ECS)",
|
||||
"groups": ["auditd"],
|
||||
"analysis_config": {
|
||||
"bucket_span": "10m",
|
||||
"bucket_span": "1h",
|
||||
"detectors": [
|
||||
{
|
||||
"detector_description": "Rare process execution on hosts",
|
||||
"function": "rare",
|
||||
"by_field_name": "process.executable",
|
||||
"partition_field_name": "host.name"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue