We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7734e48 commit 4a8b6e4Copy full SHA for 4a8b6e4
README.md
@@ -27,3 +27,7 @@ Help Options:
27
-h, --help Show this help message
28
29
```
30
+
31
+## Configuration
32
33
+see [etc/go-syslog.yml](etc/go-syslog.yml) for an example.
etc/go-syslog.yml
@@ -1,13 +1,23 @@
1
---
2
3
+# Syslog daemon
4
syslog:
5
6
+ # Path to socket (default)
7
path: "/dev/log"
8
9
+ # Permissions
10
perms: 0666
11
12
+ # Message filtering
13
filter:
14
facility: "auth,authpriv"
15
16
+ # Output manipulation
17
output:
18
template: "[SYSLOG] %s"
19
20
+# Named pipes (FIFO, multiple allowed)
21
pipes:
22
-
23
path: /docker.stdout
@@ -18,4 +28,4 @@ pipes:
type: stderr
- template: "[STDERR] %s"
+ #template: "[STDERR] %s"
0 commit comments