Skip to content

Tags: robbavey/logstash-input-http

Tags

v3.3.0

Toggle v3.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump to 3.3.0 (logstash-plugins#107) Co-Authored-By: jsvd <jsvd@users.noreply.github.com>

v3.2.4

Toggle v3.2.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request logstash-plugins#102 from yaauie/loosen-jar-deps-d… …ependency loosen jar-dependencies gem requirements to support newer jrubies

v3.2.3

Toggle v3.2.3's commit message
update jar dependencies 

v3.2.2

Toggle v3.2.2's commit message
bump version to 3.2.2 

v3.2.1

Toggle v3.2.1's commit message
bump to 3.2.1 

v3.2.0

Toggle v3.2.0's commit message

Verified

This commit was signed with the committer’s verified signature.
jsvd João Duarte
add missing rake devutils tasks 

v3.1.0

Toggle v3.1.0's commit message
replace Puma with Netty Implement an HTTP Server with Netty, replacing Puma. This new implementation produces an identical event structure as before and provides the same keystore mechanisms for TLS so it doesn't break bwc. To deal with backpressure, this implementation provides two thread pools of size :threads. One is responsible for accepting connections, reading http requests from the established channels and pushing them into an ArrayBlockingQueue. The other takes requests from the queue, processes them and pushes them to the logstash queue.

v3.0.10

Toggle v3.0.10's commit message

Verified

This commit was signed with the committer’s verified signature.
jsvd João Duarte
set default_codec doc attribute 

v3.0.9

Toggle v3.0.9's commit message
bump to version 3.0.9 

v3.0.8

Toggle v3.0.8's commit message
Prevent file descriptor leaks by limiting the max number of connectio… …ns with un-returned responses. This plugin currently leaks file descriptors. This patch prevents that by changing the behavior such that when all but one webserver threads are occupied a 429 error will be immediately returned. This means that in the event of a blocked queue we will have one thread available to reject all new attempts to write. This isn't perfect, we need queue write timeouts to do this well, but it's a decent short term fix. Fixes logstash-plugins#75