i am trying to validate the http request for thread value zero.
Execution Steps:
- Logstash-http.conf
input {
http {
port => 8080
threads => 0
}
}
output {
stdout { codec => rubydebug}
}
2. Run logstash by binary
3. Curl command to send http request
#curl -X POST 'logstash_node1:8080/index1/external/3?pretty' -H 'Content-Type: text/plain' -d '{ "message" : "HTTP POST request" }'