logstash-input-http icon indicating copy to clipboard operation
logstash-input-http copied to clipboard

Results 38 logstash-input-http issues
Sort by recently updated
recently updated
newest added

- Elastic 6.2.3 Logstash config file ``` input { http { user => "some" password => "one" port => 38080 codec => json response_headers => { "Access-Control-Allow-Origin" => "*" "Content-Type"...

int-shortlist

after the switch from OpenSSL to Java SSL provider (in [3.3.5](https://github.com/logstash-plugins/logstash-input-http/pull/126)) the plugin has some behavioral differences in terms of the configuration. This one is such difference when updating LS,...

If the http input has `codec => json` set, and the request does not contain valid json - there should be an option to enable rejecting this message rather than...

enhancement
hacktoberfest

Opening this here, as a follow up to: https://github.com/elastic/logstash/issues/2594 Journald has a native way to send logs to a remote system, and it would be nice if Logstash could receive...

enhancement

Currently the response body is either the string "ok", or nothing if the `response_code` is set to 204 (no content). There should be an option to configure a different static...

enhancement

Here is my configuration: ``` input { http {} http { port => 8443 ssl => true ssl_certificate_authorities => ["/ssl/__example_com.ca-bundle"] ssl_certificate => "/ssl/__example_com.crt" ssl_key => "/ssl/example_com.key" ssl_verify_mode => "force_peer" }...

- Version: 7.4.0 - Operating System: Any - Config File (if you have sensitive info, please remove it): N/A - Sample Data: N/A - Steps to Reproduce: https://www.elastic.co/guide/en/logstash/7.4/plugins-inputs-http.html#plugins-inputs-http-request_headers_target_field vs https://www.elastic.co/guide/en/logstash/7.4/plugins-inputs-http.html#plugins-inputs-http-remote_host_target_field

Would it be possible to extract TLS metadata from clients? Something along the lines of this section in the beats input plugin would be spectacular. https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats/message_listener.rb#L125-L155 The theory would be...

Good day, I am running into an issue with the HTTP input filter. We would like the full list of X-Forwarder-For IP's from the front-end to our device accessible in...

After the switch to Netty in 3.1.X+ some response headers are not prefixed with "http_". Previously, it appears that Puma (and Mongrel) added this prefix. Users that depend on a...

docs
breaking-compatibility