Skip to content

Tags: logstash-plugins/logstash-output-tcp

Tags

v7.0.1

Toggle v7.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
invoke post_connection_check on connect (#61) 

v6.2.2

Toggle v6.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
invoke post_connection_check on connect (6.x backport) (#62) * renew certificates and add task to facilitate future regeneration (#60)

v7.0.0

Toggle v7.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Mark deprecated SSL settings as obsolete (#58) * Mark deprecated SSL settings as obsolete This commit marks the following SSL settings as obsolete: `ssl_cert`, which should be replaced by `ssl_certificate` `ssl_cacert`, which should be replaced by `ssl_certificate_authorities` `ssl_enable`, which should be replaced by `ssl_enabled` `ssl_verify`, which should be replaced by `ssl_client_authentication` when `mode` is `server` or `ssl_verification_mode`when mode is `client` --------- Co-authored-by: Cas Donoghue <cas.donoghue@gmail.com> Co-authored-by: Karen Metts <35154725+karenzone@users.noreply.github.com>

v6.2.1

Toggle v6.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Document default codec behavior and add guidance for newline delimite… …d json (#54)

v6.2.0

Toggle v6.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Standardized SSL settings (#53) This commit standardized the exiting SSL settings, added the ssl_cipher_suites option and fixed the server mode with SSL enabled functionality.

v6.1.2

Toggle v6.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Change client mode to write using the non-blocking operation (#52) This commit changes the client mode to write using the write_nonblock method. The motivation for changing it is the current issues with IO.select and SSL, especially when using TLSv1.3. According to the IO docs, the readability notified by IO.select doesn’t necessarily mean readability from the OpenSSL::SSL::SSLSocket object, which might lead to a blocking operation, letting the plugin in a hang state when it tries to read from the socket. Removing the reading part of the existing code would also fix this issue, but write_nonblock is the official recommendation.

v6.0.3

Toggle v6.0.3'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 #50 from yaauie/backport-tcp-window-support-to-6-0-x Backport TCP window, client closing fixes to 6.0.x

v6.1.1

Toggle v6.1.1'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 #49 from mashhurs/fix-sending-over-tcp-window-size… …-with-ssl Send entire payload considering `IO#syswrite` return size.

v6.1.0

Toggle v6.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Feat: ssl_supported_protocols (TLSv1.3) (#47) * requires latest LS 8.1 due jruby-openssl pinning (jruby-openssl >= 0.12.2 dependency needed) + Refactor: review/normalize (exception) logging + a close operation should release client sockets Co-authored-by: João Duarte <jsvd@users.noreply.github.com>

v6.0.2

Toggle v6.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix: unable to start with password protected key (#45)