Skip to content

Commit

Permalink
[cisco_asa] Fix issue with linking time zone mapping to agent config (#…
Browse files Browse the repository at this point in the history
…12579)

- Fixed missing tz_map reference in agent files
  • Loading branch information
taylor-swanson authored Feb 3, 2025
1 parent 537f9df commit 410d8ec
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
5 changes: 5 additions & 0 deletions packages/cisco_asa/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.41.1"
changes:
- description: "Fix issue with linking time zone mapping to agent config."
type: bugfix
link: https://github.com/elastic/integrations/pull/12579
- version: "2.41.0"
changes:
- description: "Add advanced option for time zone mapping and support parsing extra timestamp in header."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ tags:
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}
{{#if tz_offset}}
fields_under_root: true
fields:
_conf:
{{#if tz_offset}}
tz_offset: "{{tz_offset}}"
{{/if}}
{{#if tz_map}}
tz_map:
{{tz_map}}
{{/if}}
processors:
- add_locale: ~
{{#if processors}}
Expand Down
6 changes: 5 additions & 1 deletion packages/cisco_asa/data_stream/log/agent/stream/tcp.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ publisher_pipeline.disable_host: true
{{#if ssl}}
ssl: {{ssl}}
{{/if}}
{{#if tz_offset}}
fields_under_root: true
fields:
_conf:
{{#if tz_offset}}
tz_offset: "{{tz_offset}}"
{{/if}}
{{#if tz_map}}
tz_map:
{{tz_map}}
{{/if}}
processors:
- add_locale: ~
{{#if processors}}
Expand Down
6 changes: 5 additions & 1 deletion packages/cisco_asa/data_stream/log/agent/stream/udp.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ tags:
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}
{{#if tz_offset}}
fields_under_root: true
fields:
_conf:
{{#if tz_offset}}
tz_offset: "{{tz_offset}}"
{{/if}}
{{#if tz_map}}
tz_map:
{{tz_map}}
{{/if}}
processors:
- add_locale: ~
{{#if processors}}
Expand Down
2 changes: 1 addition & 1 deletion packages/cisco_asa/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.3"
name: cisco_asa
title: Cisco ASA
version: "2.41.0"
version: "2.41.1"
description: Collect logs from Cisco ASA with Elastic Agent.
type: integration
categories:
Expand Down

0 comments on commit 410d8ec

Please sign in to comment.