nsyslog
Version:
Modular new generation log agent. Reads, transform, aggregate, correlate and send logs from sources to destinations
38 lines (34 loc) • 642 B
JSON
{
"config" : {
"datadir" : "/tmp/nsyslog",
"input" : {"maxPending" : 1000},
"buffer" : {"maxPending": 1000},
"processor" : {"maxPending": 1000},
"transporter" : {"maxPending": 1000}
},
"inputs" : {
"file" : {
"type" : "file",
"config" : {
"path" : "/var/log/**/*.log",
"watch" : true,
"readmode" : "offset",
"offset" : "start"
}
}
},
"transporters" : {
"elastic" : {
"type" : "elastic",
"config" : {
"url" : "http://localhost:9200"
}
},
"null" : {
"type" : "null"
}
},
"flows" : [
{"from":"file", "transporters":["elastic"]}
]
}