Skip to content
Merged
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/cisco_meraki/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.2.0"
changes:
- description: Add preserve_original_event function to default pipeline
type: enhancement
link: https://github.com/elastic/integrations/pull/4097
- version: "1.1.2"
changes:
- description: Fix MAC address formatting.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,11 @@ processors:
list.removeIf(v -> v == null || v == '' || (v instanceof Map && v.size() == 0) || (v instanceof List && v.size() == 0));
}
handleMap(ctx);
- remove:
field: event.original
if: "ctx?.tags == null || !(ctx.tags.contains('preserve_original_event'))"
ignore_failure: true
ignore_missing: true
on_failure:
- set:
field: error.message
Expand Down
2 changes: 1 addition & 1 deletion packages/cisco_meraki/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: cisco_meraki
title: Cisco Meraki
version: 1.1.2
version: 1.2.0
license: basic
description: Collect logs from Cisco Meraki with Elastic Agent.
type: integration
Expand Down