VictoriaMetrics/deployment/docker/victorialogs/logstash/pipeline.conf
2023-07-06 21:25:31 -07:00

20 lines
No EOL
368 B
Text

input {
syslog {
port => 5140
}
}
output {
opensearch {
hosts => ["http://victorialogs:9428/insert/elasticsearch"]
custom_headers => {
"AccountID" => "0"
"ProjectID" => "0"
}
parameters => {
"_stream_fields" => "host.ip,process.name"
"_msg_field" => "message"
"_time_field" => "@timestamp"
}
}
}