[ML] Fixes bucket spans and detector descriptions in ECS auditbeat modules (#30362) (#30379)

This commit is contained in:
Pete Harverson 2019-02-07 14:26:31 +00:00 committed by GitHub
parent 1087d8b473
commit fc7a0c4417
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 6 deletions

View file

@ -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"
}

View file

@ -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"

View file

@ -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"
}

View file

@ -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"