Can we have multiple HTTP input plugin configured into single logstash.conf file like below

input {
http {
host => "localhost"
port => "5044"
response_code => 201
}
http {
host => "localhost"
port => "5045"
response_code => 201
}
http {
host => "localhost"
port => "5046"
response_code => 201
}
}

If they are listening on different ports you can have multiple http inputs.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.