nsyslog
Version:
Modular new generation log agent. Reads, transform, aggregate, correlate and send logs from sources to destinations
39 lines (34 loc) • 584 B
JSON
{
"config" : {
"datadir" : "/tmp/nsyslog",
"input" : {"buffer" : 100}
},
"register" : [
{"type":"input","id":"debug","require":"examples/custom/debug-input.js"}
],
"inputs" : {
"debug" : {
"type" : "debug",
"config" : {
}
}
},
"transporters" : {
"console" : {
"type" : "console",
"config" : {
"format" : "${JSON}"
}
},
"redis" : {
"type" : "redis",
"config" : {
"url" : "redis://localhost",
"channel" : "nsyslog"
}
}
},
"flows" : [
{"from":"*", "transporters":"redis"}
]
}