Hi All,
i want to restrict only https POST call to be accepted by logstash
for which i did multiple options in http input section as shown below:
input {
http {
port => 5400
ssl_enabled => true
ssl_certificate_authorities => ["/etc/gd_#######.crt"]
ssl_certificate => "/etc/non-p##-#######.crt"
ssl_key => "/etc/non-p###-#########.key"
ssl_client_authentication => "required"
method => "POST"
}
}
but i am getting following error
[ERROR][logstash.inputs.http ] Unknown setting 'method' for http
[2024-02-20T11:53:51,047][ERROR][logstash.agent ] Failed to execute action {
any help or pointers would be appreciated
Thanks