Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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/checkpoint/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.41.3"
changes:
- description: Update KV split logic to take email headers into account.
type: enhancement
link: https://github.com/elastic/integrations/pull/15745
- version: "1.41.2"
changes:
- description: Update update_count, connection_count, aggregated_log_count types from integer to long.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ processors:
- kv:
tag: "kv_syslog_structured_semicolon_colon"
field: syslog5424_sd
field_split: '(?<="); '
field_split: '(?<!\\")(?<="); (?=\w)'
value_split: '(?i)(?<=[0-9a-z]):{1,2}(?=")'
trim_key: " "
trim_value: " "
Expand Down