
Add in proper support for conf.d configs. Create input at 00-input, output at 99-output, and filters at user specifiable levels in between using a new defined type for filters. Co-Authored-By: Jonathan Harker <code@gentlydownthe.net> Change-Id: Icbca7a6ba0c5a94a273ef158f707311b588483fd
13 lines
272 B
Plaintext
13 lines
272 B
Plaintext
input {
|
|
redis {
|
|
host => "127.0.0.1"
|
|
type => "redis-input"
|
|
# these settings should match the output of the agent
|
|
data_type => "list"
|
|
key => "logstash"
|
|
|
|
# We use json_event here since the sender is a logstash agent
|
|
format => "json_event"
|
|
}
|
|
}
|