Skip to content
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
5 changes: 5 additions & 0 deletions packages/syslog_router/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.0.1"
changes:
- description: Fix UDP listen_host variable mismatch.
type: bugfix
link: https://github.com/elastic/integrations/pull/17599
- version: "1.0.0"
changes:
- description: Release package as GA.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ service_notify_signal: SIGHUP
input: udp
data_stream:
vars:
listen_address: 0.0.0.0
listen_host: 0.0.0.0
listen_port: 9515
preserve_original_event: true
assert:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
host: "{{listen_address}}:{{listen_port}}"
host: "{{listen_host}}:{{listen_port}}"
tags:
{{#if preserve_original_event}}
- preserve_original_event
Expand Down
2 changes: 1 addition & 1 deletion packages/syslog_router/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.2.1
name: syslog_router
title: "Syslog Router"
version: 1.0.0
version: 1.0.1
description: "Route syslog events to integrations with Elastic Agent."
type: integration
categories:
Expand Down