Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 759 Bytes

File metadata and controls

35 lines (26 loc) · 759 Bytes

syslog-logstash-pipeline

CI

Logstash pipeline for basic syslog lines

Inputs and Outputs

If you use files called input.conf and output.conf they will not collide with this rules, even when you want to pull new versions.

Examples

Here's an example for an input.conf

input {
  redis {
    host => "localhost"
    data_type => "list"
    key => "netways-syslog-input"
  }
}

and one for output.conf.

output {
  redis {
    host => "localhost"
    data_type => "list"
    key => "netways-syslog-output"
  }
}