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/thycotic_ss/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.12.1"
changes:
- description: Handle missing cef.extensions.deviceReceiptTime field.
type: bugfix
link: https://github.com/elastic/integrations/pull/15897
- version: "1.12.0"
changes:
- description: Update Kibana constraint to support 9.0.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,15 @@ processors:

- date:
field: cef.extensions.deviceReceiptTime
tag: date_deviceReceiptTime
target_field: thycotic_ss.event.time
formats:
- ISO8601
if: ctx.cef?.extensions?.deviceReceiptTime != null && ctx.cef.extensions.deviceReceiptTime != ''
on_failure:
- append:
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}}}'
description: "Store CEF time as a thycotic_ss specific field, some delay appears to exist between event occurrence and Thycotic SS log transmission"

#############
Expand Down
2 changes: 1 addition & 1 deletion packages/thycotic_ss/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.3"
name: thycotic_ss
title: "Thycotic Secret Server"
version: "1.12.0"
version: "1.12.1"
source:
license: "Elastic-2.0"
description: "Thycotic Secret Server logs"
Expand Down