Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f9621e5
[cef] Add udp_options setting to udp input
marc-gr Dec 19, 2022
965d4ce
[checkpoint] Add udp_options setting to udp input
marc-gr Dec 19, 2022
f4d7aed
[cisco] Add udp_options setting to udp input
marc-gr Dec 19, 2022
88a9d0b
[cisco_aironet] Add udp_options setting to udp input
marc-gr Dec 19, 2022
a883ca7
[cisco_asa] Add udp_options setting to udp input
marc-gr Dec 19, 2022
9d1110e
[cisco_ftd] Add udp_options setting to udp input
marc-gr Dec 19, 2022
36bb154
[cisco_ios] Add udp_options setting to udp input
marc-gr Dec 19, 2022
dd4c37a
[cisco_ise] Add udp_options setting to udp input
marc-gr Dec 19, 2022
5dfbc4c
[cisco_meraki] Add udp_options setting to udp input
marc-gr Dec 19, 2022
58fc843
[cisco_secure_email_gateway] Add udp_options setting to udp input
marc-gr Dec 19, 2022
e760274
[cyberark_pta] Add udp_options setting to udp input
marc-gr Dec 19, 2022
7f1b6c9
[cyberarkpas] Add udp_options setting to udp input
marc-gr Dec 19, 2022
bce2b03
[fireeye] Add udp_options setting to udp input
marc-gr Dec 19, 2022
a56b75f
[fortinet] Add udp_options setting to udp input
marc-gr Dec 19, 2022
225fa45
[fortinet_fortiedr] Add udp_options setting to udp input
marc-gr Dec 19, 2022
ff83c0c
[fortinet_fortigate] Add udp_options setting to udp input
marc-gr Dec 19, 2022
928d9df
[infoblox_nios] Add udp_options setting to udp input
marc-gr Dec 19, 2022
82bcb9e
[iptables] Add udp_options setting to udp input
marc-gr Dec 19, 2022
969432c
[juniper] Add udp_options setting to udp input
marc-gr Dec 19, 2022
83deb20
[juniper_srx] Add udp_options setting to udp input
marc-gr Dec 19, 2022
14eed1e
[pfsense] Add udp_options setting to udp input
marc-gr Dec 19, 2022
25a19a4
[pulse_connect_secure] Add udp_options setting to udp input
marc-gr Dec 19, 2022
69d53af
[qnap_nas] Add udp_options setting to udp input
marc-gr Dec 19, 2022
cc2147e
[snort] Add udp_options setting to udp input
marc-gr Dec 19, 2022
5575985
[sonicwall_firewall] Add udp_options setting to udp input
marc-gr Dec 19, 2022
cc7a07d
[sophos] Add udp_options setting to udp input
marc-gr Dec 19, 2022
2ed07db
[symantec_endpoint] Add udp_options setting to udp input
marc-gr Dec 19, 2022
bd84570
Add PR number
marc-gr Dec 19, 2022
eba3759
Bump manifests versions
marc-gr Dec 19, 2022
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
Prev Previous commit
Next Next commit
[symantec_endpoint] Add udp_options setting to udp input
  • Loading branch information
marc-gr committed Dec 19, 2022
commit 2ed07dbd66bb52b791f1f084a67d34514f693e1c
5 changes: 5 additions & 0 deletions packages/symantec_endpoint/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.2.0"
changes:
- description: Add `udp_options` to the UDP input.
type: enhancement
link: https://github.com/elastic/integrations/pull/PR-NUMBER
- version: "2.1.1"
changes:
- description: Remove duplicate fields.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
host: "{{listen_address}}:{{listen_port}}"
max_message_size: 1 MiB
{{#if udp_options}}
{{udp_options}}
{{/if}}

tags:
{{#if preserve_original_event}}
Expand Down
11 changes: 11 additions & 0 deletions packages/symantec_endpoint/data_stream/log/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,17 @@ streams:
show_user: false
default: UTC
description: IANA time zone or time offset (e.g. `+0200`) to use when interpreting syslog timestamps without a time zone.
- name: udp_options
type: yaml
title: Custom UDP Options
multi: false
required: false
show_user: false
default: |
#read_buffer: 100MiB
max_message_size: 1MiB
#timeout: 300s
description: Specify custom configuration options for the UDP input.
- name: processors
type: yaml
title: Processors
Expand Down