Skip to content

Commit 8ae843f

Browse files
taylor-swansonnavnit-elastic
authored andcommitted
[syslog_router] Fix UDP listen_host variable mismatch (elastic#17599)
- Fix variable name mismatch for UDP listen host
1 parent a553ca8 commit 8ae843f

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

packages/syslog_router/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "1.0.1"
3+
changes:
4+
- description: Fix UDP listen_host variable mismatch.
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/17599
27
- version: "1.0.0"
38
changes:
49
- description: Release package as GA.

packages/syslog_router/data_stream/log/_dev/test/system/test-udp-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ service_notify_signal: SIGHUP
33
input: udp
44
data_stream:
55
vars:
6-
listen_address: 0.0.0.0
6+
listen_host: 0.0.0.0
77
listen_port: 9515
88
preserve_original_event: true
99
assert:

packages/syslog_router/data_stream/log/agent/stream/udp.yml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
host: "{{listen_address}}:{{listen_port}}"
1+
host: "{{listen_host}}:{{listen_port}}"
22
tags:
33
{{#if preserve_original_event}}
44
- preserve_original_event

packages/syslog_router/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
format_version: 3.2.1
22
name: syslog_router
33
title: "Syslog Router"
4-
version: 1.0.0
4+
version: 1.0.1
55
description: "Route syslog events to integrations with Elastic Agent."
66
type: integration
77
categories:

0 commit comments

Comments
 (0)