Skip to content
This repository was archived by the owner on Jan 27, 2023. It is now read-only.

[snapshot] Update "cisco_ios" package to version 1.7.2 #4948

Merged
merged 2 commits into from
Jul 26, 2022
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
84 changes: 84 additions & 0 deletions packages/cisco_ios/1.7.2/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# newer versions go on top
- version: "1.7.2"
changes:
- description: Improve TCP, SSL config description and example.
type: enhancement
link: https://github.com/elastic/integrations/pull/3763
- version: "1.7.1"
changes:
- description: update readme file - added link to cisco documentation
type: enhancement
link: https://github.com/elastic/integrations/pull/2932
- version: "1.7.0"
changes:
- description: Update package to ECS 8.3.0.
type: enhancement
link: https://github.com/elastic/integrations/pull/3353
- version: "1.6.0"
changes:
- description: Add TLS system test
type: enhancement
link: https://github.com/elastic/integrations/pull/3338
- description: Add TCP input with TLS support
type: enhancement
link: https://github.com/elastic/integrations/pull/3314
- version: "1.5.0"
changes:
- description: Update to ECS 8.2
type: enhancement
link: https://github.com/elastic/integrations/pull/2778
- version: "1.4.2"
changes:
- description: Add documentation for multi-fields
type: enhancement
link: https://github.com/elastic/integrations/pull/2916
- version: "1.4.1"
changes:
- description: Add missing event.original mapping
type: bugfix
link: https://github.com/elastic/integrations/pull/2636
- version: "1.4.0"
changes:
- description: Update to ECS 8.0
type: enhancement
link: https://github.com/elastic/integrations/pull/2392
- version: "1.3.0"
changes:
- description: Add syslog header and timestamp parsing.
type: enhancement
link: https://github.com/elastic/integrations/pull/2475
- version: "1.2.2"
changes:
- description: Regenerate test files using the new GeoIP database
type: bugfix
link: https://github.com/elastic/integrations/pull/2339
- version: "1.2.1"
changes:
- description: Change test public IPs to the supported subset
type: bugfix
link: https://github.com/elastic/integrations/pull/2327
- version: "1.2.0"
changes:
- description: Add 8.0.0 version constraint
type: enhancement
link: https://github.com/elastic/integrations/pull/2279
- version: "1.1.2"
changes:
- description: Update Title and Description.
type: enhancement
link: https://github.com/elastic/integrations/pull/1955
- version: "1.1.1"
changes:
- description: Fix logic that checks for the 'forwarded' tag
type: bugfix
link: https://github.com/elastic/integrations/pull/1807
- version: "1.1.0"
changes:
- description: Update to ECS 1.12.0
type: enhancement
link: https://github.com/elastic/integrations/pull/1784
- version: "1.0.0"
changes:
- description: Initial version of Cisco IOS as separate package
type: enhancement
link: https://github.com/elastic/integrations/pull/1582
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
paths:
{{#each paths as |path i|}}
- {{path}}
{{/each}}
exclude_files: [".gz$"]
tags:
{{#if preserve_original_event}}
- preserve_original_event
{{/if}}
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

fields_under_root: true
fields:
_conf:
tz_offset: '{{tz_offset}}'

processors:
- add_locale: ~
{{#if processors}}
{{processors}}
{{/if}}
27 changes: 27 additions & 0 deletions packages/cisco_ios/1.7.2/data_stream/log/agent/stream/tcp.yml.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
host: "{{syslog_host}}:{{syslog_port}}"
tags:
{{#if preserve_original_event}}
- preserve_original_event
{{/if}}
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}
{{#if ssl}}
ssl: {{ssl}}
{{/if}}
fields_under_root: true
fields:
_conf:
tz_offset: '{{tz_offset}}'

processors:
- add_locale: ~
{{#if processors}}
{{processors}}
{{/if}}
{{#if tcp_options}}
{{tcp_options}}
{{/if}}
22 changes: 22 additions & 0 deletions packages/cisco_ios/1.7.2/data_stream/log/agent/stream/udp.yml.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
host: "{{syslog_host}}:{{syslog_port}}"
tags:
{{#if preserve_original_event}}
- preserve_original_event
{{/if}}
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

fields_under_root: true
fields:
_conf:
tz_offset: '{{tz_offset}}'

processors:
- add_locale: ~
{{#if processors}}
{{processors}}
{{/if}}
Loading