Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/goflow2/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.5.2"
changes:
- description: Generate processor tags and normalize error handler.
type: enhancement
link: https://github.com/elastic/integrations/pull/15545
- version: "0.5.1"
changes:
- description: Changed owners.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,12 @@ processors:
if: ctx.destination?.ip != null && ctx.destination?.ip != ''
tag: append_destination_ip_to_related_ip
on_failure:
- set:
field: event.kind
value: pipeline_error
- set:
field: error.message
value: Processor {{{ _ingest.on_failure_processor_type }}} with tag {{ _ingest.on_failure_processor_tag
}} in pipeline {{{ _ingest.on_failure_pipeline }}} failed with message {{ _ingest.on_failure_message
}} - Source {{{_source}}}
tag: set_error_message_on_failure
value: >-
Processor '{{{ _ingest.on_failure_processor_type }}}'
{{#_ingest.on_failure_processor_tag}}with tag '{{{ _ingest.on_failure_processor_tag }}}'
{{/_ingest.on_failure_processor_tag}}failed with message '{{{ _ingest.on_failure_message }}}'
2 changes: 1 addition & 1 deletion packages/goflow2/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.2.1
name: goflow2
title: "GoFlow2 logs"
version: "0.5.1"
version: "0.5.2"
description: "Collect logs from goflow2 with Elastic Agent."
type: integration
categories:
Expand Down