-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathseq-input-syslog.d.json
31 lines (30 loc) · 1.01 KB
/
seq-input-syslog.d.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://getseq.net/schema/app-definition/v3",
"name": "Syslog Input",
"description": "Ingest Syslog payloads over UDP. Requires Seq 5.1+.",
"capabilities": ["input"],
"platform": {
"win-x64": {
"executable": "win-x64\\squiflog.exe"
},
"linux-x64": {
"executable": "linux-x64/squiflog"
},
"linux-arm64": {
"executable": "linux-arm64/squiflog"
}
},
"settings": {
"syslogAddress": {
"displayName": "Syslog address",
"helpText": "The url (protocol, IP address and port) on which the input will listen for Syslog payloads. The default is `udp://0.0.0.0:514`.",
"isOptional": true
},
"enableDiagnostics": {
"inputType": "Checkbox",
"displayName": "Enable diagnostics",
"helpText": "Controls the verbosity of diagnostic logs produced by the server. When enabled metrics will be regularly sampled and written back to Seq.",
"isOptional": true
}
}
}