Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ti_cif3] Ensure event.kind is correctly set for pipeline errors #6631

Merged
merged 7 commits into from
Jun 21, 2023
5 changes: 5 additions & 0 deletions packages/ti_cif3/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.8.0"
changes:
- description: Ensure event.kind is correctly set for pipeline errors.
type: enhancement
link: https://github.com/elastic/integrations/pull/6631
- version: "0.7.0"
changes:
- description: Update package to ECS 8.8.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,5 +342,8 @@ processors:
if: ctx.threat?.indicator?.type != null
on_failure:
- set:
field: event.kind
value: pipeline_error
- append:
field: error.message
value: "{{ _ingest.on_failure_message }}"
value: '{{{ _ingest.on_failure_message }}}'
2 changes: 1 addition & 1 deletion packages/ti_cif3/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: ti_cif3
title: "Collective Intelligence Framework v3"
version: "0.7.0"
version: "0.8.0"
release: beta
license: basic
description: "Ingest threat indicators from a Collective Intelligence Framework v3 instance with Elastic Agent."
Expand Down