From a632ba914f526c84576f889abd9df196f76aad8a Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 14 Feb 2023 08:59:32 +0100 Subject: [PATCH] Adding scripts/templates/syslog-ng.conf --- scripts/templates/syslog-ng.conf | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts/templates/syslog-ng.conf diff --git a/scripts/templates/syslog-ng.conf b/scripts/templates/syslog-ng.conf new file mode 100644 index 0000000..1d9ecee --- /dev/null +++ b/scripts/templates/syslog-ng.conf @@ -0,0 +1,3 @@ +filter f_api-healthcheck { program("{{ PROGRAM }}"); }; +destination d_api-healthcheck { file("{{ LOG_FILE }}"); }; +log { source(s_src); filter(f_api-healthcheck); destination(d_api-healthcheck); }; \ No newline at end of file