Skip to content

Commit 245882f

Browse files
committed
Fix bug in graylog configure script
1 parent 611900c commit 245882f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/graylog/scripts/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def configure_syslog_capture(_session: requests.Session, _headers: dict) -> None
292292
if len([i for i in r2["inputs"] if i["title"] == "Syslog"]) == 0:
293293
raw_data = (
294294
'{"title":"Syslog","type":"org.graylog2.inputs.syslog.udp.SyslogUDPInput","configuration":{"bind_address":"0.0.0.0","port":'
295-
+ GRAYLOG_SYSLOG_CAPTURE_PORT
295+
+ str(GRAYLOG_SYSLOG_CAPTURE_PORT)
296296
+ ',"recv_buffer_size":262144,"number_worker_threads":8,"override_source":null,"force_rdns":false,"allow_override_date":true,"store_full_message":true,"expand_structured_data":false},"global":true,"node":"'
297297
+ node_uuid
298298
+ '"}'

0 commit comments

Comments
 (0)