Skip to content

Commit 2b117e2

Browse files
SSI Integration: Use terminate processor instead of fail (#14393)
This will utilize the `terminate` processor instead of the `fail` processor, as the `fail` processor introduces an unwanted side effect by creating an additional `error.message` value. Upgrade the `format_version` to latest 8.4.0
1 parent 04aafc9 commit 2b117e2

File tree

126 files changed

+355
-202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+355
-202
lines changed

packages/abnormal_security/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "1.10.0"
3+
changes:
4+
- description: Use `terminate` processor instead of `fail` processor to handle agent errors.
5+
type: enhancement
6+
link: https://github.com/elastic/integrations/pull/14393
27
- version: "1.9.0"
38
changes:
49
- description: |

packages/abnormal_security/data_stream/ai_security_mailbox/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.11.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- rename:
1313
field: message
1414
tag: rename_message_to_event_original

packages/abnormal_security/data_stream/ai_security_mailbox_not_analyzed/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.11.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- rename:
1313
tag: rename_message_to_event_original
1414
description: Renames the original `message` field to `event.original` to store a copy of the original message. The `event.original` field is not touched if the document already has one; it may happen when Logstash sends the document.

packages/abnormal_security/data_stream/audit/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.11.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- rename:
1313
field: message
1414
tag: rename_message_to_event_original

packages/abnormal_security/data_stream/case/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.11.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- rename:
1313
field: message
1414
tag: rename_message_to_event_original

packages/abnormal_security/data_stream/threat/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.11.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- rename:
1313
field: message
1414
tag: rename_message_to_event_original

packages/abnormal_security/data_stream/vendor_case/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.11.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- rename:
1313
field: message
1414
tag: rename_message_to_event_original

packages/abnormal_security/manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
format_version: 3.2.1
1+
format_version: 3.4.0
22
name: abnormal_security
33
title: Abnormal AI
4-
version: "1.9.0"
4+
version: "1.10.0"
55
description: Collect logs from Abnormal AI with Elastic Agent.
66
type: integration
77
categories:

packages/beyondtrust_pra/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "0.3.0"
3+
changes:
4+
- description: Use `terminate` processor instead of `fail` processor to handle agent errors.
5+
type: enhancement
6+
link: https://github.com/elastic/integrations/pull/14393
27
- version: "0.2.1"
38
changes:
49
- description: Add temporary processor to remove the fields added by the Agentless policy.

packages/beyondtrust_pra/data_stream/access_session/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ processors:
55
field: ecs.version
66
tag: set_ecs_version
77
value: 8.17.0
8-
- fail:
8+
- terminate:
99
tag: data_collection_error
1010
if: ctx.error?.message != null && ctx.message == null && ctx.event?.original == null
11-
message: error message set and no data to process.
11+
description: error message set and no data to process.
1212
- remove:
1313
field:
1414
- organization

0 commit comments

Comments
 (0)