File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
packages/sentinel_one_cloud_funnel
elasticsearch/ingest_pipeline Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 11# newer versions go on top
2+ - version : " 0.14.1"
3+ changes :
4+ - description : Add missing event preservation template expansions for GCS input.
5+ type : bugfix
6+ link : https://github.com/elastic/integrations/pull/9627
27- version : " 0.14.0"
38 changes :
49 - description : Improve `event.type` and `event.action` mappings, fix missing `preserve_original_event` setting for GCS input.
Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ timestamp_epoch: {{timestamp_epoch}}
3232{{ /if }}
3333{{ #if tags }}
3434tags:
35+ {{ #if preserve_original_event }}
36+ - preserve_original_event
37+ {{ /if }}
38+ {{ #if preserve_duplicate_custom_fields }}
39+ - preserve_duplicate_custom_fields
40+ {{ /if }}
3541{{ #each tags as |tag |}}
3642 - {{ tag }}
3743{{ /each }}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ processors:
1919 - set :
2020 field : event.action
2121 value : [creation]
22- if : ctx.sentinel_one_cloud_funnel?.event?.type != null &&
22+ if : ctx.sentinel_one_cloud_funnel?.event?.type != null &&
2323 (
2424 ctx.sentinel_one_cloud_funnel?.event?.meta_event_name.toLowerCase().contains('regvaluecreate') ||
2525 ctx.sentinel_one_cloud_funnel?.event?.meta_event_name.toLowerCase().contains('regkeycreate')
@@ -31,7 +31,7 @@ processors:
3131 - set :
3232 field : event.action
3333 value : [deletion]
34- if : ctx.sentinel_one_cloud_funnel?.event?.type != null &&
34+ if : ctx.sentinel_one_cloud_funnel?.event?.type != null &&
3535 (
3636 ctx.sentinel_one_cloud_funnel?.event?.meta_event_name.toLowerCase().contains('regvaluedelete') ||
3737 ctx.sentinel_one_cloud_funnel?.event?.meta_event_name.toLowerCase().contains('regkeydelete')
Original file line number Diff line number Diff line change 11format_version : " 3.0.2"
22name : sentinel_one_cloud_funnel
33title : SentinelOne Cloud Funnel
4- version : " 0.14.0 "
4+ version : " 0.14.1 "
55description : Collect logs from SentinelOne Cloud Funnel with Elastic Agent.
66type : integration
77categories : ["security", "edr_xdr"]
You can’t perform that action at this time.
0 commit comments